home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / sys / next / programm / 8078 < prev    next >
Encoding:
Text File  |  1993-01-11  |  909 b   |  28 lines

  1. Newsgroups: comp.sys.next.programmer
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!howland.reston.ans.net!spool.mu.edu!uwm.edu!linac!att!news.cs.indiana.edu!umn.edu!csus.edu!news
  3. From: eps@futon.SFSU.EDU (Eric P. Scott)
  4. Subject: Re: Arcs and circles from curveto
  5. Message-ID: <1993Jan12.022536.18622@csus.edu>
  6. Sender: news@csus.edu
  7. Reply-To: eps@cs.sfsu.edu
  8. Organization: San Francisco State University
  9. References: <1993Jan11.014246.4735@drefla.mese.com>
  10. Date: Tue, 12 Jan 1993 02:25:36 GMT
  11. Lines: 15
  12.  
  13. PostScript approximates each quadrant of a circle with a curveto.
  14.  
  15. e.g. If you do a pathforall against 0 0 125 0 360 arc, you should
  16. find something like:
  17.  
  18.     125 0 moveto
  19.     125 69 69 125 0 125 curveto
  20.     -69 125 -125 69 -125 0 curveto
  21.     -125 -69 -69 -125 0 -125 curveto
  22.     69 -125 125 -69 125 0 curveto
  23.  
  24. BTW, This question properly belongs in comp.lang.postscript; it's
  25. not the least bit NeXT-specific.
  26.  
  27.                     -=EPS=-
  28.