IFC 4.3.2.20251031 (IFC4X3_ADD2) under development

8.9.6.3 IfcBuild2Axes(构建二维轴)

8.9.6.3.1 语义定义(Semantic definition)

8.9.6.3.2 形式化表示(Formal representation)

FUNCTION IfcBuild2Axes
  (RefDirection : IfcDirection)
    : LIST [2:2] OF IfcDirection;
LOCAL
  D : IfcDirection := NVL(IfcNormalise(RefDirection),
      IfcRepresentationItem() || IfcGeometricRepresentationItem () || IfcDirection([1.0,0.0]));
END_LOCAL;
  RETURN([D, IfcOrthogonalComplement(D)]);

END_FUNCTION;