FUNCTION IfcSameDirection

(* SCHEMA IFC2X2_FINAL; *)
FUNCTION IfcSameDirection
	(dir1, dir2 : IfcDirection; Epsilon : REAL)
	: LOGICAL;
  
    RETURN (IfcSameValue(dir1.DirectionRatios[1],dir2.DirectionRatios[1],Epsilon) AND
            IfcSameValue(dir1.DirectionRatios[2],dir2.DirectionRatios[2],Epsilon) AND
            IfcSameValue(NVL(dir1.DirectionRatios[3],0.0),NVL(dir2.DirectionRatios[3],0.0),Epsilon));
END_FUNCTION;

Referenced By

Defintion IfcSameDirection is references by the following definitions:
DefinitionType
 IfcSameAxis2Placement FUNCTION


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:20:56-04:00