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

  1. /* function to draw a rectangle with hatching */
  2. htrect(x0,y0,x1,y1,color,style)
  3. int x0; /* upper left column */
  4. int y0; /* upper left row */
  5. int x1; /* lower right column */
  6. int y1; /* lower right row */
  7. int color; /* color of rectangle boundary (-1 draw no boundary )*/
  8. int style; /* hatch style to use */
  9. {
  10.     eg_rectangle(x0,y0,x1,y1,color,style);
  11. }
  12.  
  13.