FUNCTION find_representative_shape_representation_of_product_definition

(* SCHEMA step_merged_ap_schema; *)
-- IN AP242
FUNCTION find_representative_shape_representation_of_product_definition
      (item : product_definition ) : shape_representation;
   LOCAL
      local_s_r : SET OF shape_representation := [];
   END_LOCAL;
      local_s_r := QUERY (z <* find_shape_representation_of_product_definition(item)| 'STEP_MERGED_AP_SCHEMA.REPRESENTATIVE_SHAPE_REPRESENTATION' IN TYPEOF(z));
      IF SIZEOF(local_s_r) = 1 THEN
         RETURN (local_s_r[1]);
      ELSE
         RETURN (?);
      END_IF;
END_FUNCTION;

Referenced By

Defintion find_representative_shape_representation_of_product_definition is references by the following definitions:
DefinitionType
 shape_aspect_relationship_representation_association ENTITY


[Top Level Definitions] [Exit]

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