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

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