MOVE

A statement which moves the graphics cursor to an absolute position without drawing a line. MOVE is followed by the X and Y coordinates to which the cursor should be moved; the optional qualifier BY indicates that the coordinates are relative (offsets from the current graphics cursor position) rather than absolute.

MOVE X,Y
MOVE 124,327

MOVE x,y is equivalent to PLOT 4,x,y. MOVE BY x,y is equivalent to PLOT 0,x,y.

Syntax

MOVE [BY] <numeric>,<numeric>

Associated Keywords