8.8.3.5 IfcBooleanResult(布尔结果)
AbV ⓘ
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) | 类型 | 描述 |
|---|---|---|---|
| IfcRepresentationItem (2) | |||
| 点击显示 2 个隐藏的继承特性 点击隐藏 2 个继承特性 | |||
| IfcBooleanResult (4) | |||
8.8.3.5.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| 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;