FUNCTION constraints_scaling

(* SCHEMA step_merged_ap_schema; *)
-- DIFF IN AP238 STEP-NC
-- IN AP238 STEP-NC/AP242
FUNCTION constraints_scaling
      (factors : LIST OF REAL ) : BOOLEAN;
   LOCAL
      result : BOOLEAN := FALSE;
   END_LOCAL;
      REPEAT i := 1 TO SIZEOF(factors);
         IF NOT ((0.0 < factors[i]) AND (factors[i] <= 1.0)) THEN
            result := FALSE;
            RETURN (result);
         END_IF;
      END_REPEAT;
      RETURN (result);
END_FUNCTION;

Referenced By

Defintion constraints_scaling is references by the following definitions:
DefinitionType
 locally_refined_spline_surface ENTITY
 locally_refined_spline_volume ENTITY


[Top Level Definitions] [Exit]

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