Triangulated Irregular Network |
Item | SPF | XML | Change | Description | IFC4x1 Final 4.1.0.0 |
---|---|---|---|---|
IfcTriangulatedIrregularNetwork | ADDED | IFC4x1 Final 4.1.0.0 | ||
IfcTriangulatedIrregularNetwork | ADDED |
The IfcTriangulatedIrregularNetwork is a triangulated face set for representing horizontal surfaces (one unique Z coordinate for all X and Y coordinates within domain) with additional flags for each face indicating breaklines between faces or designation as a hole or void. Triangles shall be defined with vertices in counterclockwise order as viewing from above (following right-hand rule).
For visualization, applications should not display faces where flags are set as negative (either a hole, void, or possible future extension).
The flag Void shall be used to indicate that faces are to be excluded without falling back on any other geometry. Such designation could be used for portions of a site beneath a building or other structure.
The flag Hole shall be used to indicate that faces are to be excluded but may fall back on other geometry. Such designation could be used for portions of a proposed site that are to remain unchanged (conforming to an existing site that may also be defined)
For scenarios where multiple surfaces used as input are to be combined, any triangles marked Void shall be retained as voids, while any triangles marked as Hole shall be overridden if another surface has visible geometry defined within the same horizontal location.
# | Attribute | Type | Cardinality | Description | G |
---|---|---|---|---|---|
6 | Flags | IfcInteger | L[1:?] | Indicates attributes of each triangle in a compact form as follows: -2 = invisible void; -1 = invisible hole; 0 = no breaklines; 1 = breakline at edge 1; 2 = breakline at edge 2; 3 = breakline at edges 1 and 2; 4 = breakline at edge 3; 5 = breakline at edges 1 and 3; 6 = breakline at edges 2 and 3; 7 = breakline at edges 1, 2, and 3. | X |
Rule | Description |
---|---|
NotClosed | The triangulated face set shall not be closed. |
# | Attribute | Type | Cardinality | Description | G |
---|---|---|---|---|---|
IfcRepresentationItem | |||||
LayerAssignment | IfcPresentationLayerAssignment @AssignedItems | S[0:1] | 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.
IFC2x3 CHANGE The inverse attribute LayerAssignments has been added. IFC4 CHANGE The inverse attribute LayerAssignment has been restricted to max 1. Upward compatibility for file based exchange is guaranteed. | X | |
StyledByItem | IfcStyledItem @Item | S[0:1] | Reference to the IfcStyledItem that provides presentation information to the representation, e.g. a curve style, including colour and thickness to a geometric curve.
IFC2x3 CHANGE The inverse attribute StyledByItem has been added. | X | |
IfcGeometricRepresentationItem | |||||
IfcTessellatedItem | |||||
IfcTessellatedFaceSet | |||||
1 | Coordinates | IfcCartesianPointList3D | An ordered list of Cartesian points used by the coordinate index defined at the subtypes of IfcTessellatedFaceSet. | X | |
HasColours | IfcIndexedColourMap @MappedTo | S[0:1] | Reference to the indexed colour map providing the corresponding colour RGB values to the faces of the subtypes of IfcTessellatedFaceSet. | X | |
HasTextures | IfcIndexedTextureMap @MappedTo | S[0:?] | Reference to the indexed texture map providing the corresponding texture coordinates to the vertices bounding the faces of the subtypes of IfcTessellatedFaceSet. | X | |
Dim :=3 | IfcDimensionCount | The space dimensionality of this geometric representation item, it is always 3. | X | ||
IfcTriangulatedFaceSet | |||||
2 | Normals | IfcParameterValue | ? L[1:?] L[3:3] |
An ordered list of three directions for normals. It is a two-dimensional list of directions provided by three parameter
values.
| X |
3 | Closed | IfcBoolean | ? | Indication whether the IfcTriangulatedFaceSet is a closed shell or not. If omited no such information can be provided. | X |
4 | CoordIndex | IfcPositiveInteger | L[1:?] L[3:3] |
Two-dimensional list for the indexed-based triangles, where
NOTE The coordinates of the vertices are provided by the indexed list of SELF\IfcTessellatedFaceSet.Coordinates.CoordList. | X |
5 | PnIndex | IfcPositiveInteger | ? L[1:?] | The list of integers defining the locations in the IfcCartesianPointList3D to obtain the point coordinates for the indices withint the CoordIndex. If the PnIndex is not provided the indices point directly into the IfcCartesianPointList3D. | X |
NumberOfTriangles :=SIZEOF(CoordIndex) | IfcInteger | Derived number of triangles used for this triangulation. | X | ||
IfcTriangulatedIrregularNetwork | |||||
6 | Flags | IfcInteger | L[1:?] | Indicates attributes of each triangle in a compact form as follows: -2 = invisible void; -1 = invisible hole; 0 = no breaklines; 1 = breakline at edge 1; 2 = breakline at edge 2; 3 = breakline at edges 1 and 2; 4 = breakline at edge 3; 5 = breakline at edges 1 and 3; 6 = breakline at edges 2 and 3; 7 = breakline at edges 1, 2, and 3. | X |
<xs:element name="IfcTriangulatedIrregularNetwork" type="ifc:IfcTriangulatedIrregularNetwork" substitutionGroup="ifc:IfcTriangulatedFaceSet" nillable="true"/>
<xs:complexType name="IfcTriangulatedIrregularNetwork">
<xs:complexContent>
<xs:extension base="ifc:IfcTriangulatedFaceSet">
<xs:attribute name="Flags" use="optional">
<xs:simpleType>
<xs:restriction>
<xs:simpleType>
<xs:list itemType="ifc:IfcInteger"/>
</xs:simpleType>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
ENTITY IfcTriangulatedIrregularNetwork
SUBTYPE OF (IfcTriangulatedFaceSet);
Flags : LIST [1:?] OF IfcInteger;
WHERE
NotClosed : SELF\IfcTriangulatedFaceSet.Closed = FALSE;
END_ENTITY;