diff options
Diffstat (limited to 'Master/texmf-dist/dvips/pst-bar/pst-bar.pro')
-rw-r--r-- | Master/texmf-dist/dvips/pst-bar/pst-bar.pro | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Master/texmf-dist/dvips/pst-bar/pst-bar.pro b/Master/texmf-dist/dvips/pst-bar/pst-bar.pro new file mode 100644 index 00000000000..608a8c42616 --- /dev/null +++ b/Master/texmf-dist/dvips/pst-bar/pst-bar.pro @@ -0,0 +1,30 @@ +%! +% PostScript prologue for pst-bar.tex. +% Version 0.2, 2004/08/22 +% For distribution, see pstricks.tex. +% +/tx@BarDict 5 dict def tx@BarDict begin +% +% transpose -- Matrix transpose +% +/transpose { + /X exch def + /row X length def + /col X 0 get length def + [ + /i 0 def + col { + [ + /j 0 def + row { + X j get i get + /j j 1 add def + } repeat + /i i 1 add def + ] + } repeat + ] +} def +% +end +% END pst-bar.pro |