IfcConvertDirectionInto2D

IfcConvertDirectionInto2D

该函数使用二维或三维方向的x/y比率作为输入,返回二维方向。

注意:此函数当前仅用于确定IfcGeometricRepresentationSubContext中的TrueNorth方向。

IFC2x4中的新函数。

 

EXPRESS Specification

FUNCTION IfcConvertDirectionInto2D
    (Direction : IfcDirection)
    : IfcDirection;

  LOCAL
    Direction2D : IfcDirection := IfcRepresentationItem() || IfcGeometricRepresentationItem () || IfcDirection([0.,1.]);
  END_LOCAL;
  
  Direction2D.DirectionRatios[1] := Direction.DirectionRatios[1];
  Direction2D.DirectionRatios[2] := Direction.DirectionRatios[2];
  
  RETURN (Direction2D);

END_FUNCTION;

 

 

####################

posted @ 2021-07-11 17:42  西北逍遥  阅读(77)  评论(0编辑  收藏  举报