FUNCTION find_representative_shape_representation_of_shape_aspect
(* SCHEMA step_merged_ap_schema; *)
-- IN AP242
FUNCTION find_representative_shape_representation_of_shape_aspect
(item : shape_aspect ) : shape_representation;
LOCAL
local_s_r : SET OF shape_representation := [];
END_LOCAL;
local_s_r := QUERY (z <* find_shape_representation_of_shape_aspect(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_shape_aspect 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