FUNCTION convert_to_operands_prcmfn
(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION convert_to_operands_prcmfn
(srcdom : maths_space_or_function;
prepfun : LIST OF maths_function;
finfun : maths_function_select ) : LIST [2:?] OF generic_expression;
LOCAL
operands : LIST OF generic_expression := [];
END_LOCAL;
INSERT( operands, srcdom, 0 );
REPEAT i := 1 TO SIZEOF(prepfun);
INSERT( operands, prepfun[i], i );
END_REPEAT;
INSERT( operands, convert_to_maths_function(finfun), SIZEOF(prepfun) + 1 );
RETURN (operands);
END_FUNCTION;
Referenced By
Defintion convert_to_operands_prcmfn is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2024-09-06T14:00:33-04:00