MRP
165
MRP — Move to Relative Position
Format
MRP x-coordinate, y-coordinate;
Parameters
x-coordinate/y-coordinate:
coordinates as measured from the current cursor position
Function
The MRP command moves the cursor from its current position to a specified relative
position, measured in the units designated by the UNIT command. The coordinates may
be positive or negative.
The MRP command works in the standard mode graphics only. To move to a relative
position in a path construction, use the PMRP (in Path, Move to Relative Position)
command.
File
!R! RES; UNIT C;
SFNT ’Helvetica-Bd’;
CMNT MRP and baseball;
MRP 8, 8; CIR .2;
TEXT ’ 1st’;
MRP -2, -2; CIR .2;
TEXT ’ 2nd’;
MRP -2, 2; CIR .2;
TEXT ’ 3rd’;
MRP 2, 2; CIR .2;
TEXT ’ Home’;
PAGE;
EXIT;