pnt(3) — Unix Programmer’s Manual
NAME
pnt - draw a point
SYNOPSIS
C
pnt(x, y, z)
Coord x, y, z;
pnti(x, y, z)
Icoord x, y, z;
pnt2(x, y)
Coord x, y;
pnt2i(x, y)
Icoord x, y;
FORTRAN
subroutine pnt(x, y, z)
real x, y, z
subroutine pnti(x, y, z)
integer x, y, z
subroutine pnt2(x, y)
real x, y
subroutine pnt2i(x, y)
integer x, y
Pascal
procedure pnt(x, y, z: Coord);
procedure pnti(x, y, z: Icoord);
procedure pnt2(x, y: Coord);
procedure pnt2i(x, y: Icoord);
DESCRIPTION
The pnt command colors a world space point. If the point is visible in the current viewport, it will be shown as one pixel. The pixel is drawn in the current color using the current writemask. The current graphics position is updated after the pnt command is executed.
SEE ALSO
draw, move
Silicon Graphics — R1c