pmv(3G) pmv(3G)
NAME
pmv - polygon move
SPECIFICATION
C pmv(x, y, z)
Coord x, y, z;
pmvi(x, y, z)
Icoord x, y, z;
pmvs(x, y, z)
Scoord x, y, z;
pmv2(x, y)
Coord x, y;
pmv2i(x, y)
Icoord x, y;
pmv2s(x, y)
Scoord x, y;
FORTRAN subroutine pmv(x, y, z)
real x, y, z
subroutine pmvi(x, y, z)
integer*4 x, y, z
subroutine pmvs(x, y, z)
integer*2 x, y, z
subroutine pmv2(x, y)
real x, y
subroutine pmv2i(x, y)
integer*4 x, y
subroutine pmv2s(x, y)
integer*2 x, y
DESCRIPTION
pmv moves filled polygons. You draw a typical polygon with
a pmv, a sequence of pdr, and close it with a pclos. For
example, the following sequence draws a square:
(0.0, 0.0, 0.0);
pdr(1.0, 0.0, 0.0);
pdr(1.0, 1.0, 0.0);
pdr(0.0, 1.0, 0.0);
pclos();
Page 1 (printed 8/20/87)
pmv(3G) pmv(3G)
SEE ALSO
concave, pclos, pdr, rpdr, rpmv, shademodel
Programming Guide, Section 3.6, Polygons
Page 2 (printed 8/20/87)