You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.8 KiB

1 month ago
  1. % Copyright (C) 2001-2023 Artifex Software, Inc.
  2. % All Rights Reserved.
  3. %
  4. % This software is provided AS-IS with no warranty, either express or
  5. % implied.
  6. %
  7. % This software is distributed under license and may not be copied,
  8. % modified or distributed except as expressly authorized under the terms
  9. % of the license contained in the file LICENSE in this distribution.
  10. %
  11. % Refer to licensing information at http://www.artifex.com or contact
  12. % Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
  13. % CA 94129, USA, for further information.
  14. %
  15. % Redefine pathforall for tracing.
  16. % Can't be used recursively.
  17. /# {( )print} def
  18. /-mat matrix def
  19. /-imat matrix def
  20. /-smat { //-mat currentmatrix pop //-imat setmatrix } bind def
  21. /-rmat { //-mat setmatrix } bind def
  22. /-pathforall /pathforall load def
  23. /-p2 { ( ) print exch =only ( ) print =only } bind def
  24. /-dp2 { 2 copy -p2 2 { exch 4096 mul dup cvi dup ( ) print =only sub dup 0 eq { pop } { (+) print =only } ifelse } repeat } bind def
  25. /-tp2 { //-mat itransform -p2 } bind def
  26. /-dict 5 dict def
  27. /pathforall
  28. { -dict begin
  29. /-close exch def /-curve exch def /-line exch def /-move exch def
  30. end -smat -mat ==only ( setmatrix) =
  31. {2 copy -tp2 ( moveto\t%)print
  32. 2 copy -dp2 (\n)print
  33. flush -dict /-move get -rmat exec -smat}
  34. {2 copy -tp2 ( lineto\t%)print
  35. 2 copy -dp2 (\n)print
  36. flush -dict /-line get -rmat exec -smat}
  37. {5 index 5 index -tp2 3 index 3 index -tp2 2 copy -tp2 ( curveto\t%)print
  38. 5 index 5 index -dp2 3 index 3 index -dp2 2 copy -dp2 (\n)print
  39. flush -dict /-curve get -rmat exec -smat}
  40. {(closepath\n)print flush -dict /-close get -rmat exec -smat}
  41. -pathforall -rmat
  42. }
  43. def
  44. % Just print the current path
  45. /printpath {
  46. {pop pop} {pop pop} {pop pop pop pop pop pop} {} pathforall
  47. } def