draw(3) — Unix Programmer’s Manual
NAME
draw - draw a line from the current graphics position to the specified point
SYNOPSIS
C
draw(x, y, z)
Coord x, y, z;
drawi(x, y, z)
Icoord x, y, z;
draw2(x, y)
Coord x, y;
draw2i(x, y)
Icoord x, y;
FORTRAN
subroutine draw(x, y, z)
real x, y, z
subroutine drawi(x, y, z)
integer x, y, z
subroutine draw2(x, y)
real x, y
subroutine draw2i(x, y)
integer x, y
Pascal
procedure draw(x, y, z: Coord);
procedure drawi(x, y, z: Icoord);
procedure draw2(x, y: Coord);
procedure draw2i(x, y: Icoord);
DESCRIPTION
Draw connects the specified point and the current graphics position with a line segment using the current linestyle, linewidth, color, and writemask. The current graphics position is updated to the specified point. Commands that invalidate the current graphics position should not be placed within sequences of moves and draws.
SEE ALSO
move, pnt
Silicon Graphics — R1c