IFC 4.3.2.20240128 (IFC4X3_ADD2) under development

8.9.6.16 IfcOrthogonalComplement

8.9.6.16.1 Semantic definition

8.9.6.16.2 Formal representation

FUNCTION IfcOrthogonalComplement
  (Vec : IfcDirection) 
    : IfcDirection;
LOCAL
  Result : IfcDirection ;
END_LOCAL;
  IF NOT EXISTS (Vec) OR (Vec.Dim <> 2) THEN
    RETURN(?);
  ELSE
    Result := IfcRepresentationItem() || IfcGeometricRepresentationItem () || IfcDirection([-Vec.DirectionRatios[2], Vec.DirectionRatios[1]]);
    RETURN(Result);
  END_IF;

END_FUNCTION;

8.9.6.16.3 References

Edit on Github


Is this page difficult to understand? Let us know!