This repository has been archived by the owner on May 13, 2024. It is now read-only.
forked from FozzTexx/hp-plot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hpgl.ps
77 lines (68 loc) · 2.44 KB
/
hpgl.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
%!PS-Adobe-2.0
% HPGL Conversion Code
% Copyright 1998-2014 Chris Osborn <[email protected]>
% This file is part of hp-plot.
%
% hp-plot is free software; you can redistribute it and/or modify it
% under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2, or (at your option)
% any later version.
%
% hp-plot is distributed in the hope that it will be useful, but
% WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
% General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with hp-plot; see the file COPYING. If not see
% <http://www.gnu.org/licenses/>.
/hp_res 1012 72 72 transform pop div def
/hpcoord {hp_res mul cvi} bind def
/hp_fixx {} bind def
/hp_fixy {neg} bind def
/hp_dumppath {
{(PU;PA) print 1 index 1 index transform 2 1 roll hpcoord hp_fixx = (,) print hpcoord hp_fixy = (;) print
1 index 1 index transform 2 1 roll hpcoord
/hp_sx 2 1 roll def hpcoord /hp_sy 2 1 roll def
pop pop
}
{(PD;PA) print 1 index 1 index transform 2 1 roll hpcoord hp_fixx = (,) print hpcoord hp_fixy = (;) print
pop pop}
{(PD;PA) print 1 index 1 index transform 2 1 roll hpcoord hp_fixx = (,) print hpcoord hp_fixy = (;) print
pop pop pop pop pop pop}
{(PD;PA) print hp_sx hp_fixx = (,) print hp_sy hp_fixy = (;) print}
pathforall
(PU;) print flush
} bind def
/stroke {flattenpath hp_dumppath newpath} bind def
/show {false charpath flattenpath hp_dumppath newpath} bind def
/fill {/hp_plotfills where {pop hp_plotfills {
flattenpath hp_dumppath newpath} if} if
} bind def
/__HPGLRectPath {
4 2 roll moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath
} bind def
/__HPGLProcessRectArgs {
1 index type /arraytype eq {
exch 0 4 2 index length 1 sub {
dup 3 add 1 exch {
1 index exch get exch
} for 5 1 roll 5 index exec
} for pop pop
} {
exec
} ifelse
} bind def
/rectfill {
gsave newpath {
__HPGLRectPath fill
} __HPGLProcessRectArgs grestore
}
/rectstroke {
gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{
{gsave __HPGLRectPath null concat stroke grestore}
dup length array cvx copy dup 2 4 -1 roll put __HPGLProcessRectArgs
}{{__HPGLRectPath stroke} __HPGLProcessRectArgs}ifelse grestore
} bind def
3 8 div 72 mul neg 1 4 div 72 mul neg translate
% End HPGL Conversion Code