IFC 4.3.2.20251031 (IFC4X3_ADD2) under development

8.9.3.75 IfcVector(向量)

RV ⓘ
AbV ⓘ

8.9.3.75.1 语义定义(Semantic definition)

IfcVector 是一种同时具有大小和方向的几何表示项。向量的大小仅由 Magnitude 属性定义,方向仅由 Orientation 属性定义。

8.9.3.75.2 实体继承(Entity inheritance)

8.9.3.75.3 特性(Attributes)

# 特性(Attributes) 类型 描述
IfcRepresentationItem (2)
LayerAssignment SET [0:1] OF IfcPresentationLayerAssignment FOR AssignedItems

将表示项分配给单个或多个层。LayerAssignments 可以覆盖其所在的 IfcRepresentationItems 列表中的 LayerAssignments

StyledByItem SET [0:1] OF IfcStyledItem FOR Item

引用为表示提供表现信息的 IfcStyledItem,例如,为几何曲线提供曲线样式,包括颜色和厚度。

点击显示 2 个隐藏的继承特性 点击隐藏 2 个继承特性
IfcVector (3)
1 Orientation IfcDirection

向量的方向。

2 Magnitude IfcLengthMeasure

向量的大小。所有大小为 0.0 的向量无论方向属性如何,均被视为值相等。

* Dim IfcDimensionCount

此属性是形式化派生的

Orientation.Dim

此类的空间维度,由 Orientation 导出。

表 8.9.3.75.A

8.9.3.75.4 形式化命题(Formal propositions)

名称 描述
MagGreaterOrEqualZero

大小必须为正数或零。

Magnitude >= 0.0
表 8.9.3.75.B

8.9.3.75.5 形式化表示(Formal representation)

ENTITY IfcVector
 SUBTYPE OF (IfcGeometricRepresentationItem);
	Orientation : IfcDirection;
	Magnitude : IfcLengthMeasure;
 DERIVE
	 Dim : IfcDimensionCount := Orientation.Dim;
 WHERE
	MagGreaterOrEqualZero : Magnitude >= 0.0;
END_ENTITY;

8.9.3.75.6 参考文献