GrDrawLines()

Name

GrDrawLines() -- Draw a set of lines

Synopsis

void GrDrawLines ( GR_DRAW_ID id , GR_GC_ID gc , GR_POINT * points , GR_COUNT count );

Description

This function draws a frame polygon on the specified drawable using the graphics context gc. The polygon is specified by an array of GR_POINT structures in which each point represents a vertex of the polygon.

Note

This function appears to do the same thing as GrPoly().

Parameters

TypeNameDescription
GR_DRAW_IDidThe ID of the drawable to draw the lines onto.
GR_GC_IDgcThe ID of the graphics context to use when drawing the lines.
GR_POINT*points A pointer to an array of GR_POINT structures which define the endpoints of the lines.
GR_COUNTcountThe number of points in the point table.

See Also

GrLine(), GrPoly().