Definition from ISO/CD 10303-42:1992: This type conveys the continuity properties of a composite curve or surface. The continuity referred to is geometric, not parametric continuity. For example, in ContSameGradient the tangent vectors of successive segments will have the same direction, but may have different magnitude.
NOTE Corresponding STEP type: transition_code, please refer to ISO/IS 10303-42:1994, p. 14 for the final definition of the formal standard.
HISTORY New Type in IFC Release 1.0
Figure quoted from ISO/CD 10303-42:1992, p. 55
ENUMERATION
Constant | Description |
---|---|
DISCONTINUOUS | |
CONTINUOUS | |
CONTSAMEGRADIENT | |
CONTSAMEGRADIENTSAMECURVATURE |
<xs:simpleType name="IfcTransitionCode">
<xs:restriction base="xs:string">
<xs:enumeration value="discontinuous"/>
<xs:enumeration value="continuous"/>
<xs:enumeration value="contsamegradient"/>
<xs:enumeration value="contsamegradientsamecurvature"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcTransitionCode = ENUMERATION OF (
DISCONTINUOUS,
CONTINUOUS,
CONTSAMEGRADIENT,
CONTSAMEGRADIENTSAMECURVATURE);
END_TYPE;