Rasterachse | |
Grid Axis | |
Axe de grille |
An individual axis, IfcGridAxis, is defined in the context of a design grid. The axis definition is based on a curve of dimensionality 2. The grid axis is positioned within the XY plane of the position coordinate system defined by the IfcGrid.
The standard geometric representation of IfcGridAxis is defined using a 2D curve entity. Grid axes are normally defined by an offset to another axis. The IfcOffsetCurve2D supports this concept. Each grid axis has a sense given by the parameterization of the curve. The attribute SameSense is an indicator of whether or not the sense of the grid axis agrees with, or opposes, that of the underlying curve.
As shown in Figure 298, the grid axis is defined as a 2D curve within the xy plane of the position coordinate system. Any curve can be used to define a grid axis, most common is the use of IfcLine for linear grids and IfcCircle for radial grids. Most grids are defined by a pair of axis lists, each defined by a base grid axis and axes given by an offset to the base axis. The use of IfcOffsetCurve2D as underlying AxisCurve supports this concept. |
|
Figure 298 — Grid axis |
HISTORY New entity in IFC1.0
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
1 | AxisTag | IfcLabel | [0:1] | The tag or name for this grid axis. | X |
2 | AxisCurve | IfcCurve | [1:1] | Underlying curve which provides the geometry for this grid axis. | X |
3 | SameSense | IfcBoolean | [1:1] | Defines whether the original sense of curve is used or whether it is reversed in the context of the grid axis. | X |
PartOfW | IfcGrid @WAxes | S[0:1] | If provided, the IfcGridAxis is part of the WAxes of IfcGrid. | X | |
PartOfV | IfcGrid @VAxes | S[0:1] | If provided, the IfcGridAxis is part of the VAxes of IfcGrid. | X | |
PartOfU | IfcGrid @UAxes | S[0:1] | If provided, the IfcGridAxis is part of the UAxes of IfcGrid. | X | |
HasIntersections | IfcVirtualGridIntersection @IntersectingAxes | S[0:?] | The reference to a set of | X |
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
IfcGridAxis | |||||
1 | AxisTag | IfcLabel | [0:1] | The tag or name for this grid axis. | X |
2 | AxisCurve | IfcCurve | [1:1] | Underlying curve which provides the geometry for this grid axis. | X |
3 | SameSense | IfcBoolean | [1:1] | Defines whether the original sense of curve is used or whether it is reversed in the context of the grid axis. | X |
PartOfW | IfcGrid @WAxes | S[0:1] | If provided, the IfcGridAxis is part of the WAxes of IfcGrid. | X | |
PartOfV | IfcGrid @VAxes | S[0:1] | If provided, the IfcGridAxis is part of the VAxes of IfcGrid. | X | |
PartOfU | IfcGrid @UAxes | S[0:1] | If provided, the IfcGridAxis is part of the UAxes of IfcGrid. | X | |
HasIntersections | IfcVirtualGridIntersection @IntersectingAxes | S[0:?] | The reference to a set of | X |
<xs:element name="IfcGridAxis" type="ifc:IfcGridAxis" substitutionGroup="ifc:Entity" nillable="true"/>
<xs:complexType name="IfcGridAxis">
<xs:complexContent>
<xs:extension base="ifc:Entity">
<xs:sequence>
<xs:element name="AxisCurve" type="ifc:IfcCurve" nillable="true"/>
</xs:sequence>
<xs:attribute name="AxisTag" type="ifc:IfcLabel" use="optional"/>
<xs:attribute name="SameSense" type="ifc:IfcBoolean" use="optional"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
ENTITY IfcGridAxis;
AxisTag : OPTIONAL IfcLabel;
AxisCurve : IfcCurve;
SameSense : IfcBoolean;
INVERSE
PartOfW : SET [0:1] OF IfcGrid FOR WAxes;
PartOfV : SET [0:1] OF IfcGrid FOR VAxes;
PartOfU : SET [0:1] OF IfcGrid FOR UAxes;
HasIntersections : SET OF IfcVirtualGridIntersection FOR IntersectingAxes;
WHERE
WR1 : AxisCurve.Dim = 2;
WR2 : (SIZEOF(PartOfU) = 1) XOR (SIZEOF(PartOfV) = 1) XOR (SIZEOF(PartOfW) = 1);
END_ENTITY;