Home  /  Autodocs  /  graphics.library

NAME

PolyDraw
Draw lines from table of (x,y) values.

SYNOPSIS

PolyDraw( rp, count , array )
a1 d0 a0

void PolyDraw( struct RastPort *, WORD, WORD * );

FUNCTION

draws connected line segments between the current graphics cursor position to the first point in the array, and between every successive pair of points in it. The function does not attempt to draw a closed figure, i.e. drawing ends at the last point in the array.

INPUTS

rp
pointer to RastPort structure

count
number of (x,y) pairs in the array

array
pointer to first (x,y) pair

BUGS

This function did not change between the current and and former versions of the operating system, though its description might have been misleading. The first line always started at the graphics cursor position, and no provisions are made to close the figure.

SEE ALSO

Draw() Move() <graphics/rastport.h>