8.8.3.6 IfcBoundingBox(边界框)
8.8.3.6.1 语义定义(Semantic definition)
IfcBoundingBox 定义了一个与对象坐标系轴线平行的正交边界框。它通过一个三维笛卡尔点 Corner 和三个长度测量值来定义,这些测量值分别表示边界框在正轴方向上的 X、Y 和 Z 参数。
注意 任何具有产品形状表示的 IfcProduct 子类型都可以具有边界框表示。在 IfcShapeRepresentation 中定义的 'Box' 表示标识符使用 IfcBoundingBox 作为最简单的 3D 形状表示。

如图 8.8.3.6.A 所示,IfcBoundingBox 由其自身的位置定义,该位置可用于将 IfcBoundingBox 相对于几何坐标系进行放置。IfcBoundingBox 由左下角(Corner)和右上角(在父坐标系内测量的 XDim、YDim、ZDim)定义。
注意 对应的 STEP 类型 box_domain 在 ISO 10303-42 中定义。
8.8.3.6.2 实体继承(Entity inheritance)
-
- IfcBoundingBox
- IfcAnnotationFillArea
- IfcBooleanResult
- IfcCartesianPointList
- IfcCartesianTransformationOperator
- IfcCsgPrimitive3D
- IfcCurve
- IfcDirection
- IfcFaceBasedSurfaceModel
- IfcFillAreaStyleHatching
- IfcFillAreaStyleTiles
- IfcGeometricSet
- IfcHalfSpaceSolid
- IfcLightSource
- IfcPlacement
- IfcPlanarExtent
- IfcPoint
- IfcSectionedSpine
- IfcSegment
- IfcShellBasedSurfaceModel
- IfcSolidModel
- IfcSurface
- IfcTessellatedItem
- IfcTextLiteral
- IfcVector
8.8.3.6.3 特性(Attributes)
| # | 特性(Attributes) | 类型 | 描述 |
|---|---|---|---|
| IfcRepresentationItem (2) | |||
| LayerAssignment | SET [0:1] OF IfcPresentationLayerAssignment FOR AssignedItems |
将表示项分配给单个或多个层。LayerAssignments 可以覆盖其所在的 IfcRepresentation 的 Items 列表中的 LayerAssignments。 |
|
| StyledByItem | SET [0:1] OF IfcStyledItem FOR Item |
引用为表示提供表现信息的 IfcStyledItem,例如,为几何曲线提供曲线样式,包括颜色和厚度。 |
|
| 点击显示 2 个隐藏的继承特性 点击隐藏 2 个继承特性 | |||
| IfcBoundingBox (5) | |||
| 1 | Corner | IfcCartesianPoint |
左下角的位置(具有最小值)。 |
| 2 | XDim | IfcPositiveLengthMeasure |
长度属性(沿平行于 X 轴的边测量) |
| 3 | YDim | IfcPositiveLengthMeasure |
宽度属性(沿平行于 Y 轴的边测量) |
| 4 | ZDim | IfcPositiveLengthMeasure |
高度属性(沿平行于 Z 轴的边测量)。 |
| * | Dim | IfcDimensionCount |
此属性是形式化派生的
此类的空间维度,始终为 3。 |
8.8.3.6.4 形式化表示(Formal representation)
ENTITY IfcBoundingBox
SUBTYPE OF (IfcGeometricRepresentationItem);
Corner : IfcCartesianPoint;
XDim : IfcPositiveLengthMeasure;
YDim : IfcPositiveLengthMeasure;
ZDim : IfcPositiveLengthMeasure;
DERIVE
Dim : IfcDimensionCount := 3;
END_ENTITY;