home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Tutorial / Cookbook / 07.PSWrap / circle.psw < prev    next >
Encoding:
Text File  |  1993-01-18  |  132 b   |  11 lines

  1. defineps drawCircle(float radius, shade) 
  2. gsave 
  3.       currentpoint
  4.     newpath
  5.         radius 0 360 arc
  6.     shade setgray
  7.      fill 
  8. grestore
  9.  
  10. endps
  11.