Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought



move(3G)                                                              move(3G)



NAME
     move, movei, moves, move2, move2i, move2s - moves the current graphics
     position to a specified point

C SPECIFICATION
     void move(Coord x, Coord y, Coord z)

     void movei(Icoord x, Icoord y, Icoord z)

     void moves(Scoord x, Scoord y, Scoord z)

     void move2(Coord x, Coord y)

     void move2i(Icoord x, Icoord y)

     void move2s(Scoord x, Scoord y)

     All of the above routines are functionally the same.  They differ only in
     the type declarations of their parameters and in whether they assume a
     three- or two-dimensional space.

PARAMETERS
     x   expects the new x coordinate for the current graphics position.

     y   expects the new y coordinate for the current graphics position.

     z   expects the new z coordinate for the current graphics position (when
         applicable).

DESCRIPTION
     move changes (without drawing) the current graphics position to the point
     specified by x, y, and z. The graphics position is the point from which
     the next drawing routine will start drawing.

     move2(x, y) is equivalent to move(x, y, 0.0).

SEE ALSO
     bgnline, draw, endline, v, getgpos

NOTE
     move should not be used in new development.  Rather, lines should be
     drawn using the high-performance v commands, surrounded by calls to
     bgnline and endline.












                                                                        Page 1



Typewritten Software • bear@typewritten.org • Edmonds, WA 98026