home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2002 February / INTERNET88.ISO / pc / software / windows / bits / pdf995 / data1.cab / Program_Executable_Files / res / ppath.ps < prev    next >
Encoding:
Text File  |  2001-12-08  |  2.2 KB  |  58 lines

  1. %    Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of GNU Ghostscript.
  3. % GNU Ghostscript is distributed in the hope that it will be useful, but
  4. % WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  5. % to anyone for the consequences of using it or for whether it serves any
  6. % particular purpose or works at all, unless he says so in writing.  Refer
  7. % to the GNU General Public License for full details.
  8. % Everyone is granted permission to copy, modify and redistribute GNU
  9. % Ghostscript, but only under the conditions described in the GNU General
  10. % Public License.  A copy of this license is supposed to have been given
  11. % to you along with GNU Ghostscript so you can know your rights and
  12. % responsibilities.  It should be in a file named COPYING.  Among other
  13. % things, the copyright notice and this notice must be preserved on all
  14. % copies.
  15.  
  16. % $RCSfile: ppath.ps,v $ $Revision: 1.2.2.1 $
  17. % Redefine pathforall for tracing.
  18. % Can't be used recursively.
  19.  
  20. /# {( )print} def
  21.  
  22. /-mat matrix def
  23. /-imat matrix def
  24. /-smat { //-mat currentmatrix pop //-imat setmatrix } bind def
  25. /-rmat { //-mat setmatrix } bind def
  26. /-pathforall /pathforall load def
  27. /-p2 { ( ) print exch =only ( ) print =only } bind def
  28. /-dp2 { 2 copy -p2 2 { exch 4096 mul dup cvi dup ( ) print =only sub dup 0 eq { pop } { (+) print =only } ifelse } repeat } bind def
  29. /-tp2 { //-mat itransform -p2 } bind def
  30. /-dict 5 dict def
  31.  
  32. /pathforall
  33.  { -dict begin
  34.    /-close exch def  /-curve exch def  /-line exch def  /-move exch def
  35.    end -smat -mat ==only ( setmatrix) =
  36.    {2 copy -tp2 ( moveto\t%)print
  37.     2 copy -dp2 (\n)print
  38.     flush -dict /-move get -rmat exec -smat}
  39.    {2 copy -tp2 ( lineto\t%)print
  40.     2 copy -dp2 (\n)print
  41.     flush -dict /-line get -rmat exec -smat}
  42.    {5 index 5 index -tp2 3 index 3 index -tp2 2 copy -tp2 ( curveto\t%)print
  43.     5 index 5 index -dp2 3 index 3 index -dp2 2 copy -dp2 (\n)print
  44.     flush -dict /-curve get -rmat exec -smat}
  45.    {(closepath\n)print flush   -dict /-close get -rmat exec -smat}
  46.    -pathforall -rmat
  47.  }
  48. def
  49.  
  50. % Just print the current path
  51.  
  52. /printpath {
  53.   {pop pop} {pop pop} {pop pop pop pop pop pop} {} pathforall
  54. } def
  55.