FUNCTION using_representations

(* SCHEMA step_merged_ap_schema; *)
-- DIFF IN AP203e2
-- DIFF IN AP224
-- DIFF IN AP232
FUNCTION using_representations
      (item : founded_item_select ) : SET OF representation;
   LOCAL
      results : SET OF representation;
      result_bag : BAG OF representation;
      intermediate_items : SET OF founded_item_select;
   END_LOCAL;
      results := [];
      result_bag := USEDIN(item, 'STEP_MERGED_AP_SCHEMA.REPRESENTATION.ITEMS');
      IF SIZEOF(result_bag) > 0 THEN
         REPEAT i := 1 TO HIINDEX(result_bag);
            results := results + result_bag[i];
         END_REPEAT;
      END_IF;
      intermediate_items := using_items(item, []);
      IF SIZEOF(intermediate_items) > 0 THEN
         REPEAT i := 1 TO HIINDEX(intermediate_items);
            result_bag := USEDIN(intermediate_items[i], 'STEP_MERGED_AP_SCHEMA.REPRESENTATION.ITEMS');
            IF SIZEOF(result_bag) > 0 THEN
               REPEAT j := 1 TO HIINDEX(result_bag);
                  results := results + result_bag[j];
               END_REPEAT;
            END_IF;
         END_REPEAT;
      END_IF;
      RETURN (results);
END_FUNCTION;

Referenced By

Defintion using_representations is references by the following definitions:
DefinitionType
 acyclic_mapped_representation FUNCTION
 annotation_occurrence ENTITY
 binary_assembly_constraint ENTITY
 boundary_curve_of_b_spline_or_rectangular_composite_surface ENTITY
 b_spline_curve_knot_locator ENTITY
 b_spline_curve_segment ENTITY
 b_spline_surface_knot_locator ENTITY
 b_spline_surface_patch ENTITY
 b_spline_surface_strip ENTITY
 characterized_item_within_representation ENTITY
 check_associative_shape_aspects FUNCTION
 check_geometric_dimension FUNCTION
 composite_curve_transition_locator ENTITY
 constrained_kinematic_motion_representation ENTITY
 dimension_of FUNCTION
 explicit_procedural_representation_item_relationship ENTITY
 fixed_constituent_assembly_constraint ENTITY
 fixed_instance_attribute_set ENTITY
 free_kinematic_motion_representation ENTITY
 geometric_representation_item ENTITY
 get_directed_link FUNCTION
 get_representations_for_items FUNCTION
 implicit_explicit_positioned_sketch_relationship ENTITY
 invalidate_vrep_item FUNCTION
 item_identified_representation_usage ENTITY
 kinematic_path ENTITY
 kinematic_property_topology_representation ENTITY
 point_on_edge_curve ENTITY
 point_on_face_surface ENTITY
 presentation_layer_assignment_constraint_2d_or_3d RULE
 presentation_representation ENTITY
 rectangular_composite_surface_transition_locator ENTITY
 representation_item ENTITY
 scanned_data_item ENTITY
 simultaneous_constraint_group ENTITY
 subsketch ENTITY
 tessellated_item ENTITY
 using_representation_with_mapping FUNCTION
 value_representation_item ENTITY
 variational_representation_item ENTITY


[Top Level Definitions] [Exit]

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