PostScript command to move the current point to a specified location. Pops the top two numbers off the stack and uses them as the X and Y coordinates of the new position. Does not draw a line from the original position to the new position, as lineto does. The coordinates are taken as the absolute location. For movement relative to the current point, see rmoveto.

Example:

%!PS
100 100 moveto
100 200 lineto
200 100 moveto 
200 200 lineto
stroke
showpage
quit

Log in or register to write something here or to contact authors.