home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / Cookbook / 11a.PStransforms / blob.psw < prev    next >
Encoding:
Text File  |  1993-01-19  |  256 b   |  14 lines

  1. defineps drawBlob(float size, lineWidth)
  2.    lineWidth setlinewidth
  3.    newpath
  4.       0 0 moveto
  5.       size 0 lineto
  6.       size size lineto
  7.       0 size lineto
  8.       0 0 lineto
  9.       size size rlineto
  10.       0 size moveto
  11.       size 0 lineto
  12.     stroke
  13. endps
  14.