FUNCTION representations_mapped_into

(* SCHEMA step_merged_ap_schema; *)
-- IN AP214
FUNCTION representations_mapped_into
      (rep : representation ) : SET OF representation;
   LOCAL
      results : SET OF representation := [];
      rm : SET OF representation_map;
      mi : SET OF mapped_item := [];
   END_LOCAL;
      rm := bag_to_set(USEDIN(rep, 'STEP_MERGED_AP_SCHEMA.REPRESENTATION_MAP.MAPPED_REPRESENTATION'));
      REPEAT i := 1 TO HIINDEX(rm);
         mi := mi + rm[i].map_usage;
      END_REPEAT;
      REPEAT j := 1 TO HIINDEX(mi);
         results := results + USEDIN(mi[j], 'STEP_MERGED_AP_SCHEMA.REPRESENTATION.ITEMS');
      END_REPEAT;
      RETURN (results);
END_FUNCTION;

Referenced By

Defintion representations_mapped_into is references by the following definitions:
DefinitionType
 check_associative_shape_aspects FUNCTION


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2020-07-28T17:02:20-04:00