
plpoly3: Draw a polygon in 3 space 

DESCRIPTION:

    This function is used in example 18. 

SYNOPSIS:

plpoly3(n, x, y, z, draw, ifcc)

ARGUMENTS:

    n (PLINT, input) :      Number of points defining line. 

    x (const PLFLT *, input) :      Pointer to array with x coordinates of
    points. 

    y (const PLFLT *, input) :      Pointer to array with y coordinates of
    points. 

    z (const PLFLT *, input) :      Pointer to array with z coordinates of
    points. 

    draw (const PLBOOL *, input) :    Pointer to array which controls
    drawing the segments of the polygon.  If draw[i] is true, then the
    polygon segment from index [i] to [i+1] is drawn, otherwise, not. 

    ifcc (PLBOOL, input) :    If ifcc is true the directionality of the
    polygon is determined by assuming the points are laid out in a
    counter-clockwise order.  Otherwise, the directionality of the
    polygon is determined by assuming the points are laid out in a
    clockwise order. 
