FUNCTION sts_get_product_definition_shape

(* SCHEMA step_merged_ap_schema; *)
-- DIFF IN AP238 STEP-NC
-- IN AP238 STEP-NC/AP242
FUNCTION sts_get_product_definition_shape
      (input : geometric_tolerance_target ) : product_definition_shape;
      CASE FALSE OF
         'STEP_MERGED_AP_SCHEMA.DIMENSIONAL_LOCATION' IN TYPEOF(input) :
               RETURN (input\shape_aspect_relationship.relating_shape_aspect\shape_aspect.of_shape);
         'STEP_MERGED_AP_SCHEMA.DIMENSIONAL_SIZE' IN TYPEOF(input) :
               RETURN (input\dimensional_size.applies_to\shape_aspect.of_shape);
         'STEP_MERGED_AP_SCHEMA.PRODUCT_DEFINITION_SHAPE' IN TYPEOF(input) :
               RETURN (input);
         'STEP_MERGED_AP_SCHEMA.SHAPE_ASPECT' IN TYPEOF(input) :
               RETURN (input\shape_aspect.of_shape);
      OTHERWISE :
            RETURN (?);
      END_CASE;
END_FUNCTION;

Referenced By

Defintion sts_get_product_definition_shape is references by the following definitions:
DefinitionType
 geometric_tolerance ENTITY


[Top Level Definitions] [Exit]

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