8.8.3.22 IfcGeometricSet(几何集)
RV ⓘ
AbV ⓘ
8.8.3.22.1 语义定义(Semantic definition)
IfcGeometricSet 用于交换由(2D或3D)点、曲线和曲面组成的形状表示,这些表示不具有拓扑结构(如连接的面集或壳体),未进行网格划分,也不是实体模型(如扫描实体、CSG或Brep)。
8.8.3.22.2 实体继承(Entity inheritance)
-
- IfcGeometricSet
- IfcAnnotationFillArea
- IfcBooleanResult
- IfcBoundingBox
- IfcCartesianPointList
- IfcCartesianTransformationOperator
- IfcCsgPrimitive3D
- IfcCurve
- IfcDirection
- IfcFaceBasedSurfaceModel
- IfcFillAreaStyleHatching
- IfcFillAreaStyleTiles
- IfcHalfSpaceSolid
- IfcLightSource
- IfcPlacement
- IfcPlanarExtent
- IfcPoint
- IfcSectionedSpine
- IfcSegment
- IfcShellBasedSurfaceModel
- IfcSolidModel
- IfcSurface
- IfcTessellatedItem
- IfcTextLiteral
- IfcVector
8.8.3.22.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 个继承特性 | |||
| IfcGeometricSet (2) | |||
| 1 | Elements | SET [1:?] OF IfcGeometricSetSelect |
构成几何集的几何元素,这些元素可以是点、曲线或曲面;但要求具有相同的坐标空间维度。 |
| * | Dim | IfcDimensionCount |
此属性是形式化派生的
此类的空间维度,与集合中第一个元素的维度相同。where规则确保所有元素具有相同的维度。 |
8.8.3.22.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| ConsistentDim |
几何集内的所有元素应具有相同的维度。 |
|
|
8.8.3.22.5 形式化表示(Formal representation)
ENTITY IfcGeometricSet
SUPERTYPE OF (ONEOF
(IfcGeometricCurveSet))
SUBTYPE OF (IfcGeometricRepresentationItem);
Elements : SET [1:?] OF IfcGeometricSetSelect;
DERIVE
Dim : IfcDimensionCount := Elements[1].Dim;
WHERE
ConsistentDim : SIZEOF(QUERY(Temp <* Elements |
Temp.Dim <> Elements[1].Dim))
= 0;
END_ENTITY;