IFC 4.3.2.20240423 (IFC4X3_ADD2) under development

8.20.6.3 IfcPathHeadToTail

8.20.6.3.1 Semantic definition

This function returns TRUE if all edges of the input path are consecutive.

8.20.6.3.2 Formal representation

FUNCTION IfcPathHeadToTail
(APath : IfcPath) : LOGICAL;
   LOCAL
     N : INTEGER := 0;
     P : LOGICAL := UNKNOWN;
   END_LOCAL;
     N := SIZEOF (APath.EdgeList);
   REPEAT i := 2 TO N;
      P := P AND (APath.EdgeList[i-1].EdgeEnd :=:
                  APath.EdgeList[i].EdgeStart);
   END_REPEAT;
   RETURN (P);

END_FUNCTION;

8.20.6.3.3 References

Edit on Github


Is this page difficult to understand? Let us know!