FUNCTION representations_mapped_into

(* SCHEMA AUTOMOTIVE_DESIGN; *)
 
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, 
  'AUTOMOTIVE_DESIGN.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], 
    'AUTOMOTIVE_DESIGN.REPRESENTATION.ITEMS');
  END_REPEAT;
  RETURN (results);
END_FUNCTION; (* declared in: aic_associative_draughting_elements *)

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
2012-03-27T17:16:12-04:00