PMZP
203
PMZP — in Path, Move to Zero-relative Position
Format
PMZP x-coordinate, y-coordinate;
Parameters
x-coordinate, y-coordinate:
coordinates as measured from left edge limit of the current page
Function
The PMZP command moves the cursor to a position in a path construction, specified
relative to the top and left edge limits of the current page, and measured in the units
designated by the UNIT command.
The coordinates may be positive or negative. Negative coordinates move the cursor off
the current page.
File
!R! RES; UNIT C; STM 2; SLM 2;
SFNT "Helvetica-Nr";
NEWP;
PMZP 0, 0; SPD .2;
PMZP 0, 4; FONT 13; TEXT ’< = = = Paper edge limits’;
PMZP 0, 0; PARC 0, 0, .1, 0, 360;
PMRP 0, .333; TEXT ’ PMZP 0, 0;’;
PMZP 4, 0; PARC 4, 0, .1, 0, 360;
PMRP 0, .333; TEXT ’ PMZP 4, 0;’;
PMZP 3, 6; PARC 3, 6, .1, 0, 360;
PMRP 0, .333; TEXT ’ PMZP 3, 6;’;
PMZP 7, 7; PARC 7, 7, .1, 0, 360;
PMRP 0, .333; TEXT ’ PMZP 7, 7;’;
STRK;
PAGE;
EXIT;