home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m242 / 2.ddi / VER2FUNC.ZIP / GRPOLY.C < prev    next >
Encoding:
Text File  |  1989-10-16  |  320 b   |  12 lines

  1.  
  2.  
  3. /* function to draw a polygon (set of lines) from 2 arrays of pts. */
  4. grpoly(c,r,sides,color)
  5. int *c; /* pointer to array of column coordinates */
  6. int *r; /* pointer to array of row coordinates */
  7. int sides; /* number of sides */
  8. int color; /* color of polygon */
  9. {
  10.     eg_polygon(c,r,sides,1,color,0,0,1);
  11. }
  12.