You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AP214 has select types (type unions) that mix enums and reference types.
For example rotation_range_measure:
TYPE rotational_range_measure = SELECT
(plane_angle_measure, unlimited_range);
END_TYPE; (*-- 10303-105: kinematic_structure_schema*)
Here unlimited_range is an enum and plane_angle_measure is a reference to another STEP entity. The current code-gen doesn't handle this case because IFC encapsulates these in a value type.
The text was updated successfully, but these errors were encountered:
AP214 has select types (type unions) that mix enums and reference types.
For example rotation_range_measure:
Here unlimited_range is an enum and plane_angle_measure is a reference to another STEP entity. The current code-gen doesn't handle this case because IFC encapsulates these in a value type.
The text was updated successfully, but these errors were encountered: