FUNCTION IfcSameCartesianPoint
(* SCHEMA IFC2X2_FINAL; *)
FUNCTION IfcSameCartesianPoint
(cp1, cp2 : IfcCartesianPoint; Epsilon : REAL)
: LOGICAL;
RETURN (IfcSameValue(cp1.Coordinates[1],cp2.Coordinates[1],Epsilon) AND
IfcSameValue(cp1.Coordinates[2],cp2.Coordinates[2],Epsilon) AND
IfcSameValue(NVL(cp1.Coordinates[3],0.0),NVL(cp2.Coordinates[3],0.0),Epsilon));
END_FUNCTION;
Referenced By
Defintion IfcSameCartesianPoint is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:20:56-04:00