IFC 4.3.2.20251031 (IFC4X3_ADD2) under development

8.9.3.51 IfcPolyline(多段线)

RV ⓘ
AbV ⓘ

8.9.3.51.1 语义定义(Semantic definition)

IfcPolyline 是一种由笛卡尔点列表定义的仅包含线性线段的有界曲线。如果列表中的第一个和最后一个笛卡尔点相同,那么多段线为闭合曲线,否则为开放曲线。

多段线示例
图1 — 带有参数长度的有界 _IfcPolyline_
Image 当 1 ≤ in - 1 时 其中 i - 1 ≤ ui,参数范围为 0 <≤ un - 1。
Figure 8.9.3.51.B

8.9.3.51.2 实体继承(Entity inheritance)

8.9.3.51.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,例如,为几何曲线提供曲线样式,包括颜色和厚度。

IfcCurve (1)
* Dim IfcDimensionCount

此属性是形式化派生的

IfcCurveDim(SELF)

此抽象类的空间维度,所有子类(如 IfcLineIfcConicIfcBoundedCurve)的定义各不相同。

点击显示 3 个隐藏的继承特性 点击隐藏 3 个继承特性
IfcPolyline (1)
1 Points LIST [2:?] OF IfcCartesianPoint

定义多段线的点。

表 8.9.3.51.C

8.9.3.51.4 形式化命题(Formal propositions)

名称 描述
SameDim

所有点的空间维度应相同。

SIZEOF(QUERY(Temp <* Points | Temp.Dim <> Points[1].Dim)) = 0
表 8.9.3.51.D

8.9.3.51.5 形式化表示(Formal representation)

ENTITY IfcPolyline
 SUBTYPE OF (IfcBoundedCurve);
	Points : LIST [2:?] OF IfcCartesianPoint;
 WHERE
	SameDim : SIZEOF(QUERY(Temp <* Points | Temp.Dim <> Points[1].Dim)) = 0;
END_ENTITY;

8.9.3.51.6 参考文献