IFC 4.3.2.20251031 (IFC4X3_ADD2) under development

8.8.3.5 IfcBooleanResult(布尔结果)

AbV ⓘ

8.8.3.5.1 语义定义(Semantic definition)

IfcBooleanResult 是通过对两个实体进行布尔运算得到的结果。

8.8.3.5.2 实体继承(Entity inheritance)

8.8.3.5.3 特性(Attributes)

# 特性(Attributes) 类型 描述
IfcRepresentationItem (2)
点击显示 2 个隐藏的继承特性 点击隐藏 2 个继承特性
IfcBooleanResult (4)
表 8.8.3.5.A

8.8.3.5.4 形式化命题(Formal propositions)

名称 描述
FirstOperandClosed

如果 FirstOperand 的类型为 IfcTessellatedFaceSet,则它必须是一个封闭的细分曲面。

NOT('IFC4X3_DEV_62887e3f.IFCTESSELLATEDFACESET' IN TYPEOF(FirstOperand)) OR (EXISTS(FirstOperand.Closed) AND FirstOperand.Closed)
SameDim

第一个操作数的维度应与第二个操作数的维度相同。

FirstOperand.Dim = SecondOperand.Dim
SecondOperandClosed

如果 SecondOperand 的类型为 IfcTessellatedFaceSet,则它必须是一个封闭的细分曲面。

NOT('IFC4X3_DEV_62887e3f.IFCTESSELLATEDFACESET' IN TYPEOF(SecondOperand)) OR (EXISTS(SecondOperand.Closed) AND SecondOperand.Closed)
表 8.8.3.5.B

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;

8.8.3.5.6 参考文献