FUNCTION unique_in_product_definition
(* SCHEMA assembly_feature_relationship_schema; *)
FUNCTION unique_in_product_definition
(item:representative_shape_representation) : BOOLEAN;
LOCAL
local_p_d: SET OF product_definition := [];
local_s_r: SET OF shape_representation := [];
i : INTEGER;
j : INTEGER;
END_LOCAL;
-- find product_definitions represented by the input
-- representative_shape_representation
local_p_d := using_product_definition_of_shape_representation (item);
-- ERROR
IF (SIZEOF (local_p_d) <> 1) THEN RETURN (FALSE);
ELSE
-- find shape_representation representing the product_definitions
REPEAT i := 1 to HIINDEX (local_p_d);
local_s_r := find_shape_representation_of_product_definition
(local_p_d[i]);
REPEAT j := 1 to HIINDEX (local_s_r);
IF (('REPRESENTATIVE_SHAPE_REPRESENTATION' IN TYPEOF (local_s_r[j]))
AND (local_s_r[j] :<>: item)) THEN RETURN (FALSE);
END_IF;
END_REPEAT;
END_REPEAT;
END_IF;
RETURN (TRUE);
END_FUNCTION;
Referenced By
Defintion unique_in_product_definition is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:14:00-04:00