diff options
author | Patrick McCarty <pnorcks@gmail.com> | 2010-08-13 12:17:18 -0700 |
---|---|---|
committer | Patrick McCarty <pnorcks@gmail.com> | 2010-08-13 15:03:08 -0700 |
commit | 8a104f4a3f020c9fcd6ebbb1c9c4cf88f1020371 (patch) | |
tree | 5d1fb5e516941912f0625754ec38fb07b7696011 /ps | |
parent | 26e8b94f358244216a83c1a6653d5a72c1a1c5e7 (diff) |
Remove traces of 'connected-shape.
Since 'path is a superset of the functionality provided by
'connected-shape, we no longer need 'connected-shape.
Diffstat (limited to 'ps')
-rw-r--r-- | ps/music-drawing-routines.ps | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/ps/music-drawing-routines.ps b/ps/music-drawing-routines.ps index 7ea8c0fb90..ccaf6b3dcc 100644 --- a/ps/music-drawing-routines.ps +++ b/ps/music-drawing-routines.ps @@ -232,24 +232,6 @@ bind def grestore } bind def -/draw_connected_shape -{ - gsave - currentpoint translate - /filled exch def - /connect exch def - /savematrix matrix currentmatrix def - setlinewidth - scale - /arlen exch def - arlen { - /shlen exch def - shlen { } repeat shlen 2 eq { lineto } { curveto } ifelse - } repeat connect { closepath } if - savematrix setmatrix filled { stroke_and_fill } { stroke } ifelse - grestore -} bind def - /draw_line % dx dy x1 y1 thickness draw_line { setlinewidth % dx dy x1 y1 |