FUNCTION get_representations_for_items
(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION get_representations_for_items
(input : SET OF founded_item_select ) : SET OF representation;
LOCAL
r_set : SET OF representation := [];
END_LOCAL;
REPEAT i := LOINDEX(input) TO HIINDEX(input);
r_set := r_set + using_representations(input[i]);
END_REPEAT;
RETURN (r_set);
END_FUNCTION;
Referenced By
Defintion get_representations_for_items is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2024-09-06T14:00:33-04:00