FUNCTION acyclic_shape_aspect_occurrence

(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION acyclic_shape_aspect_occurrence
      (sao : shape_aspect_occurrence;
       definition : shape_aspect_or_characterized_object ) : BOOLEAN;
      IF NOT ('STEP_MERGED_AP_SCHEMA.SHAPE_ASPECT_OCCURRENCE' IN TYPEOF(definition)) THEN
         RETURN (TRUE);
      END_IF;
      IF definition :=: sao THEN
         RETURN (FALSE);
      ELSE
         RETURN (acyclic_shape_aspect_occurrence(sao, definition\shape_aspect_occurrence.definition));
      END_IF;
END_FUNCTION;

Referenced By

Defintion acyclic_shape_aspect_occurrence is references by the following definitions:
DefinitionType
 shape_aspect_occurrence ENTITY


[Top Level Definitions] [Exit]

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