FUNCTION IfcSameAxis2Placement

(* SCHEMA IFC4; *)
FUNCTION IfcSameAxis2Placement
  (ap1, ap2 : IfcAxis2Placement; Epsilon : REAL)
  : LOGICAL ;

  RETURN (IfcSameDirection(ap1.P[1],ap2.P[1],Epsilon) AND
          IfcSameDirection(ap1.P[2],ap2.P[2],Epsilon) AND
          IfcSameCartesianPoint(ap1.Location,ap2.Location,Epsilon));

END_FUNCTION;

Referenced By

Defintion IfcSameAxis2Placement is references by the following definitions:
DefinitionType
 IfcRepresentationContextSameWCS RULE


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2023-12-22T16:31:10-05:00