pcUserInitRepeat
pcUserInitRepeat(l_stepX l_stepY l_repeatX l_repeatY p_port) =>t / nil
Description
A user-defined procedure called by the compiler before it processes any repetitions. The procedure is normally used to generate code to set the values of variables for repetition parameters.
Arguments
Value Returned
Examples
procedure( pcUserInitRepeat( sX sY rX rY port ) ; keep record of step distance and repetitions fprintf(port "pcUserStep = %L\n" sY) fprintf(port "pcUserRepeat = %L\n" rY)
)
Generates a call to SKILL procedures to record repetition parameters.
Return to top