FUNCTION IfcConvertDirectionInto2D

(* SCHEMA IFC4; *)
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;

Referenced By

Defintion IfcConvertDirectionInto2D is references by the following definitions:
DefinitionType
 IfcGeometricRepresentationSubContext ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2016-06-01T11:21:49-04:00