8.8.3.5 IfcBooleanResult(布尔结果)
8.8.3.5.1 语义定义(Semantic definition)
IfcBooleanResult 是通过对两个实体进行布尔运算得到的结果。
8.8.3.5.2 实体继承(Entity inheritance)
-
- IfcBooleanResult
- IfcAnnotationFillArea
- IfcBoundingBox
- 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.5.3 特性(Attributes)
| # | 特性(Attributes) | 类型(Type) | 描述(Description) |
|---|---|---|---|
| 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 个继承特性 | |||
| IfcBooleanResult (4) | |||
| 1 | Operator | IfcBooleanOperator |
用于创建结果的布尔运算中使用的布尔运算符。 |
| 2 | FirstOperand | IfcBooleanOperand |
布尔运算中要操作的第一个操作数。 |
| 3 | SecondOperand | IfcBooleanOperand |
为运算指定的第二个操作数。 |
| * | Dim | IfcDimensionCount |
此属性是形式化派生的
此实体的空间维度。它与第一个操作数的空间维度相同。一个 where 规则确保两个操作数具有相同的空间维度。 |
8.8.3.5.4 形式化命题(Formal propositions)
| 名称(Name) | 描述(Description) |
|---|---|
| FirstOperandClosed |
如果 FirstOperand 的类型为 IfcTessellatedFaceSet,则它必须是一个封闭的细分曲面。 |
|
|
| SameDim |
第一个操作数的维度应与第二个操作数的维度相同。 |
|
|
| SecondOperandClosed |
如果 SecondOperand 的类型为 IfcTessellatedFaceSet,则它必须是一个封闭的细分曲面。 |
|
|
8.8.3.5.5 形式化表示(Formal representation)
ENTITY IfcBooleanResult
SUPERTYPE OF (ONEOF
(IfcBooleanClippingResult))
SUBTYPE OF (IfcGeometricRepresentationItem);
Operator : IfcBooleanOperator;
FirstOperand : IfcBooleanOperand;
SecondOperand : IfcBooleanOperand;
DERIVE
Dim : IfcDimensionCount := FirstOperand.Dim;
WHERE
FirstOperandClosed : NOT('IFC4X3_DEV_62887e3f.IFCTESSELLATEDFACESET' IN TYPEOF(FirstOperand)) OR (EXISTS(FirstOperand.Closed) AND FirstOperand.Closed);
SameDim : FirstOperand.Dim = SecondOperand.Dim;
SecondOperandClosed : NOT('IFC4X3_DEV_62887e3f.IFCTESSELLATEDFACESET' IN TYPEOF(SecondOperand)) OR (EXISTS(SecondOperand.Closed) AND SecondOperand.Closed);
END_ENTITY;