blob: cd42f38d22d4214eb1258f8deffdb419a564aaca (
plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
%!PS-Adobe-2.0
%%DocumentFonts: Times-Roman
%%Creator: Axiom
%%CreationDate: today
%%Pages: 1
%%processing (hard) limit: 250 pts or 500 values for the operand stack.
%%EndComments
%------------------------------- prologue -------------------------------%
%-------------------------- support procedures --------------------------%
%--------- first create user dictionary with 100 entries max ------------%
% (number can be changed to accomodate definitions) %
100 dict begin %% using 100 entries in top level dictionary
/FontHeight 12 def
/inch
{ 72 mul }
def
% yVal and hVal are necessary because the Xwindow display origin
% is at the upper left corner, while the postscript display
% origin is at the lower left hand corner.
/yVal %% get Y value -- make upper left corner origin
{ maxY sub abs } %% maxY is viewWindow height
def
/hVal %% get H value -- used for displaying title text
{ maxH sub abs } %% maxH is viewWindow height+titleWindow height
def
% loads in the font
/loadFont
{ /Times-Roman findfont FontHeight scalefont setfont }
def
% draws a rectangle with input operand:
% height
% width
% notice that this function does not "draw" or ink the rectangle.
/drawRect
{ 1 index 1 add 0 rlineto %% draw first side
0 exch 1 add neg rlineto %% draw second side
1 add neg 0 rlineto %% draw third side
closepath } %% draw fourth side
def
% create a rectangle with input operand in the view window:
% y
% x
% height
% width
% notice that this function does not "draw" or ink the rectangle.
/rectangle
{ yVal moveto %% set currentpoint for line
drawRect } %% draws the rectangle
def
% These are global variables that every draw procedure uses
% THe operand should be as follows:
% viewWindow width
% viewWindow height
% title height
/setDim
{ /maxX exch def %% width of display
/maxY exch def %% height of display
/titleH exch def %% height of title
/maxH maxY titleH add def %% height of display + title
} def
%-------------------------- major procedures --------------------------%
/title %% draws a rectangle around the title of picture
{ gsave
newpath
moveto %% lower left of title
titleH 1 add 0 exch rlineto %% draw first side
1 add 0 rlineto %% draw second side
1 add neg 0 exch rlineto
begin installGC stroke end %% draw third side
grestore }
def
/drawFrame %% draw display frame
{ gsave
newpath
maxX maxY 0 0 rectangle
begin installGC stroke end
grestore }
def
% updates the foreground color of existing graphics-context dictionary:
% foreground color
% dictionary name
/setForeground
{ /FGcolor exch put }
def
% updates the background color of existing graphics-context dictionary:
% background color
% dictionary name
/setBackground
{ /BGcolor exch put }
def
% updates the line width, line style, cap style, join style of
% existing graphics-context dictionary:
% dictionary name
% join style
% cap style
% line width
/setLineAttributes
{ begin
/JoinStyle exch def
/CapStyle exch def
/LineWidth exch def
end }
def
% creates a graphics context dictionary with the following information:
% /dictionary name
% foreground color
% background color
% line width
% cap style
% join style
% this creates different graphical contexts for different drawing functions.
/makeDict
{ 5 dict 2 copy def begin pop %% with dict name on top of stack
/FGcolor exch def %% define drawing attributes
/BGcolor exch def %% not heavily used
/LineWidth exch def
/CapStyle exch def
/JoinStyle exch def
end }
def
% makes the current dictionary attributes effective
% this function takes the values in the current dictionary to set the context
% these are the values currently being used: foreground, cap, join, and width
/installGC
{
FGcolor currentgray ne
{FGcolor setgray} if %% foreground color
CapStyle currentlinecap ne
{CapStyle setlinecap} if %% cap style
JoinStyle currentlinejoin ne
{JoinStyle setlinejoin} if %% join style
LineWidth currentlinewidth ne
{LineWidth setlinewidth} if } %% line width
def
% operand stack configuration in order to use psDrawLine:
% psDrawLine
% y0
% x0
% y1
% x1
% graphics-context dictionary
% this draws a line from (x0, y0) to (x1, y1).
/psDrawLine
{ gsave
newpath
yVal moveto
yVal lineto
begin installGC stroke end
grestore }
def
% operand stack configuration in order to use psDrawStr:
% psDrawStr
% y
% x
% string
% graphics-context dictionary
% this function draws a text string at (x,y).
/psDrawStr
{ gsave
newpath
loadFont
yVal moveto
exch begin installGC show end
grestore }
def
%-------------------------- script --------------------------%
% 1 inch 1 inch translate
mark %% mark bottom of our stack
0 0 1
1072693248 0 /globalGC1 makeDict
0 0 1
1072693248 0 /globalGC2 makeDict
0 0 1
1072693248 0 /trashGC makeDict
0 0 1
1072693248 0 /componentGC makeDict
0 0 1
1072693248 0 /opaqueGC makeDict
0 0 1
1072693248 0 /renderGC makeDict
0 0 1
1072693248 0 /globGC makeDict
0 0 1
1072693248 0 /anotherGC makeDict
1 0 1
1072693248 0 /renderGC makeDict
gsave % save graphics state for clipping path
1.000000 1.000000 scale
24 303 300 setDim
maxX maxY 0 0 rectangle clip % set clip path
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 8 262 257 94 psDrawLine
globGC (X) 3 267 psDrawStr
globalGC1 107.000000 setForeground
globGC 107.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 283 262 33 94 psDrawLine
globGC (Y) 288 267 psDrawStr
globalGC1 107.000000 setForeground
globGC 107.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 145 18 145 283 psDrawLine
globGC (Z) 150 13 psDrawStr
globalGC1 107.000000 setForeground
globGC 107.000000 setForeground
0 0 0 componentGC setLineAttributes
componentGC 0.000000 setForeground
componentGC 0.000000 setForeground
componentGC 162 163 162 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 167 162 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 125 167 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 121 168 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 115 162 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 126 163 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 132 180 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 129 180 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 171 174 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 174 173 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 180 178 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 169 178 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 140 101 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 130 99 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 119 104 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 121 122 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 128 128 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 131 128 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 128 123 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 127 122 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 134 119 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 139 108 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 175 105 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 182 106 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 176 106 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 169 109 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 164 121 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 149 123 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 153 123 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 147 117 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 140 117 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 163 129 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 173 129 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 184 124 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 182 107 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 175 101 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 130 184 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 145 186 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 155 211 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 174 217 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 175 215 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 180 212 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 198 215 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 199 213 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 188 207 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 182 190 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 188 190 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 184 190 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 191 205 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 179 208 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 174 209 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 164 206 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 158 191 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 168 191 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 167 206 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 155 209 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 149 210 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 140 207 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 188 192 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 182 190 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 192 190 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 157 66 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 153 60 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 192 67 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 196 95 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 184 89 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 190 80 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 184 70 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 180 70 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 169 76 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 207 68 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 211 72 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 157 225 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 161 230 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 206 237 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 177 246 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 270 182 263 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 236 270 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 232 263 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 199 256 232 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 217 260 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 213 248 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 183 241 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 215 234 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 211 231 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 20 182 28 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 177 20 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 205 28 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 165 52 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 161 47 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 215 54 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 220 59 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 193 53 220 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 232 29 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 236 34 232 psDrawLine
grestore % restore graphics state
cleartomark %% clearing operand stack
end %% pops mainDict from dictionary stack
showpage
%-------------------------- end --------------------------%
|