move(3) — Unix Programmer’s Manual
NAME
move - move to a specified point
SYNOPSIS
C
move(x, y, z)
Coord x, y, z;
movei(x, y, z)
Icoord x, y, z;
move2(x, y)
Coord x, y;
move2i(x, y)
Icoord x, y;
FORTRAN
subroutine move(x, y, z)
real x, y, z
subroutine movei(x, y, z)
integer x, y, z
subroutine move2(x, y)
real x, y
subroutine move2i(x, y)
integer x, y
Pascal
procedure move(x, y, z: Coord);
procedure movei(x, y, z: Icoord);
procedure move2(x, y: Coord);
procedure move2i(x, y: Icoord);
DESCRIPTION
The move command moves (without drawing) to the specified world space point, and updates the current graphics position. The move command has four forms: 3D floating point, 3D integer, 2D floating point, and 2D integer; move2(x, y) is equivalent to move(x, y, 0.0).
SEE ALSO
draw, pnt
Silicon Graphics — R1c