IFC 4.3.2.20250905 (IFC4X3_ADD2) under development

  • Help suggest improvements
  • Get user or developer support

8.9.3.51 IfcPolyline

RV ⓘ
AbV ⓘ

8.9.3.51.1 Semantic definition

The IfcPolyline is a bounded curve with only linear segments defined by a list of Cartesian points. If the first and the last Cartesian point in the list are identical, then the polyline is a closed curve, otherwise it is an open curve.

Figure 8.9.3.51.A illustrates a bounded IfcPolyline and shows the parametric length of each segment and of the total polyline.
polyline examples
Figure 8.9.3.51.A — Bounded _IfcPolyline_ with parametric length
Definition according to ISO/CD 10303-42:1992 A polyline is a bounded curve of n - 1 linear segments, defined by a list of n points, P~1~, P~2~ ... P~n~. The _i_th segment of the curve is parameterized as follows: Entity adapted from polyline in ISO 10303-42. New entity in IFC1.0
Image for 1 ≤ i ≤ n - 1 where i - 1 ≤ u ≤ i and with parametric range of 0 <≤ u ≤ n - 1.
Figure 8.9.3.51.B

8.9.3.51.2 Entity inheritance

8.9.3.51.3 Attributes

# Attribute Type Description
IfcRepresentationItem (2)
LayerAssignment SET [0:1] OF IfcPresentationLayerAssignment FOR AssignedItems

Assignment of the representation item to a single or multiple layer(s). The LayerAssignments can override a LayerAssignments of the IfcRepresentation it is used within the list of Items.

The inverse attribute LayerAssignments has been added. The inverse attribute LayerAssignment has been restricted to max 1. Upward compatibility for file based exchange is guaranteed.
StyledByItem SET [0:1] OF IfcStyledItem FOR Item

Reference to the IfcStyledItem that provides presentation information to the representation, e.g. a curve style, including colour and thickness to a geometric curve.

The inverse attribute StyledByItem has been added.
IfcCurve (1)
* Dim IfcDimensionCount

This attribute is formally derived.

IfcCurveDim(SELF)

The space dimensionality of this abstract class, defined differently for all subtypes, i.e. for IfcLine, IfcConic and IfcBoundedCurve.

Click to show 3 hidden inherited attributes Click to hide 3 inherited attributes
IfcPolyline (1)
1 Points LIST [2:?] OF IfcCartesianPoint

The points defining the polyline.

Table 8.9.3.51.Q

8.9.3.51.4 Formal propositions

Name Description
SameDim

The space dimensionality of all Points shall be the same.

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

8.9.3.51.5 Examples

8.9.3.51.6 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.7 References

Edit on Github


Is this page difficult to understand? Let us know!

8.9.3.51.8 Changelog

8.9.3.51.8.1 IFC4

  • where rule, SameDim
  • where rule, WR41