home *** CD-ROM | disk | FTP | other *** search
/ jppd.dyndns.org / jppd.dyndns.org.tar / jppd.dyndns.org / QUERYPRO / Impressora_PDF / converter.exe / GPLGS / ppath.ps < prev    next >
Text File  |  2002-02-22  |  2KB  |  55 lines

  1. %    Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2. % This software is provided AS-IS with no warranty, either express or
  3. % implied.
  4. % This software is distributed under license and may not be copied,
  5. % modified or distributed except as expressly authorized under the terms
  6. % of the license contained in the file LICENSE in this distribution.
  7. % For more information about licensing, please refer to
  8. % http://www.ghostscript.com/licensing/. For information on
  9. % commercial licensing, go to http://www.artifex.com/licensing/ or
  10. % contact Artifex Software, Inc., 101 Lucas Valley Road #110,
  11. % San Rafael, CA  94903, U.S.A., +1(415)492-9861.
  12.  
  13. % $Id: ppath.ps,v 1.4 2002/02/21 21:49:28 giles Exp $
  14. % Redefine pathforall for tracing.
  15. % Can't be used recursively.
  16.  
  17. /# {( )print} def
  18.  
  19. /-mat matrix def
  20. /-imat matrix def
  21. /-smat { //-mat currentmatrix pop //-imat setmatrix } bind def
  22. /-rmat { //-mat setmatrix } bind def
  23. /-pathforall /pathforall load def
  24. /-p2 { ( ) print exch =only ( ) print =only } bind def
  25. /-dp2 { 2 copy -p2 2 { exch 4096 mul dup cvi dup ( ) print =only sub dup 0 eq { pop } { (+) print =only } ifelse } repeat } bind def
  26. /-tp2 { //-mat itransform -p2 } bind def
  27. /-dict 5 dict def
  28.  
  29. /pathforall
  30.  { -dict begin
  31.    /-close exch def  /-curve exch def  /-line exch def  /-move exch def
  32.    end -smat -mat ==only ( setmatrix) =
  33.    {2 copy -tp2 ( moveto\t%)print
  34.     2 copy -dp2 (\n)print
  35.     flush -dict /-move get -rmat exec -smat}
  36.    {2 copy -tp2 ( lineto\t%)print
  37.     2 copy -dp2 (\n)print
  38.     flush -dict /-line get -rmat exec -smat}
  39.    {5 index 5 index -tp2 3 index 3 index -tp2 2 copy -tp2 ( curveto\t%)print
  40.     5 index 5 index -dp2 3 index 3 index -dp2 2 copy -dp2 (\n)print
  41.     flush -dict /-curve get -rmat exec -smat}
  42.    {(closepath\n)print flush   -dict /-close get -rmat exec -smat}
  43.    -pathforall -rmat
  44.  }
  45. def
  46.  
  47. % Just print the current path
  48.  
  49. /printpath {
  50.   {pop pop} {pop pop} {pop pop pop pop pop pop} {} pathforall
  51. } def
  52.