FUNCTION convert_to_maths_function

(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION convert_to_maths_function
      (func : maths_function_select ) : maths_function;
   LOCAL
      efenum : elementary_function_enumerators;
      mthfun : maths_function;
   END_LOCAL;
      IF schema_prefix + 'MATHS_FUNCTION' IN TYPEOF(func) THEN
         mthfun := func;
      ELSE
         efenum := func;
         mthfun := make_elementary_function(efenum);
      END_IF;
      RETURN (mthfun);
END_FUNCTION;

Referenced By

Defintion convert_to_maths_function is references by the following definitions:
DefinitionType
 convert_to_operands_prcmfn FUNCTION
 function_applicability FUNCTION
 function_application ENTITY
 make_function_application FUNCTION
 parallel_composed_function_composability_check FUNCTION


[Top Level Definitions] [Exit]

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