home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / graphic / square.c < prev   
Encoding:
Text File  |  1991-12-24  |  640 b   |  20 lines

  1. /**********************************************************************
  2. SQUARE
  3. Description - draws a square
  4. **********************************************************************
  5. Function - square(x,y,side)
  6. Input - xy coord of upper left corner, length of one side
  7. Output - to the screen
  8. #includes - none
  9. #defines  - none
  10. Routines Called - rectangle, line, plotxy
  11. Notes -
  12. **********************************************************************/
  13. square(x,y,side)
  14. int x,y,side;
  15. {
  16.   rectangle(x,y,side,side);
  17.   return;
  18. }
  19. /******************** end of function ********************************/
  20.