File: genps.h

package info (click to toggle)
transfig 1%3A3.2.5.c-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 7,132 kB
  • ctags: 5,898
  • sloc: ansic: 29,462; sh: 8,738; makefile: 3,272; csh: 25
file content (716 lines) | stat: -rw-r--r-- 15,488 bytes parent folder | download | duplicates (6)
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
/*
 * TransFig: Facility for Translating Fig code
 * Copyright (c) 1991 by Micah Beck
 * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
 * Parts Copyright (c) 1989-2002 by Brian V. Smith
 *
 * Any party obtaining a copy of these files is granted, free of charge, a
 * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
 * nonexclusive right and license to deal in this software and
 * documentation files (the "Software"), including without limitation the
 * rights to use, copy, modify, merge, publish and/or distribute copies of
 * the Software, and to permit persons who receive copies from any such 
 * party to do so, with the only requirement being that this copyright 
 * notice remain intact.
 *
 */


/*
 *	genps.h: PostScript headers/patterns etc.
 *
 */

extern Boolean	epsflag;	/* to distinguish PS and EPS */
extern Boolean	pdfflag;	/* to distinguish PDF and PS/EPS */
extern Boolean	tiffpreview;	/* add a TIFF preview? */

extern void	gen_ps_eps_option();
extern void	genps_start();
extern int	genps_end();
extern void	genps_grid();
extern void	genps_arc();
extern void	genps_ellipse();
extern void	genps_line();
extern void	genps_spline();
extern void	genps_text();


#define		BEGIN_PROLOG1	"\
/$F2psDict 200 dict def\n\
$F2psDict begin\n\
$F2psDict /mtrx matrix put\n\
/col-1 {0 setgray} bind def\n\
"

#define		BEGIN_PROLOG2	"\
/cp {closepath} bind def\n\
/ef {eofill} bind def\n\
/gr {grestore} bind def\n\
/gs {gsave} bind def\n\
/sa {save} bind def\n\
/rs {restore} bind def\n\
/l {lineto} bind def\n\
/m {moveto} bind def\n\
/rm {rmoveto} bind def\n\
/n {newpath} bind def\n\
/s {stroke} bind def\n\
/sh {show} bind def\n\
/slc {setlinecap} bind def\n\
/slj {setlinejoin} bind def\n\
/slw {setlinewidth} bind def\n\
/srgb {setrgbcolor} bind def\n\
/rot {rotate} bind def\n\
/sc {scale} bind def\n\
/sd {setdash} bind def\n\
/ff {findfont} bind def\n\
/sf {setfont} bind def\n\
/scf {scalefont} bind def\n\
/sw {stringwidth} bind def\n\
/tr {translate} bind def\n\
/tnt {dup dup currentrgbcolor\n\
  4 -2 roll dup 1 exch sub 3 -1 roll mul add\n\
  4 -2 roll dup 1 exch sub 3 -1 roll mul add\n\
  4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb}\n\
  bind def\n\
/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul\n\
  4 -2 roll mul srgb} bind def\n\
"

#define		FILL_PAT01	"\
% left30\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-2 -4 10 5]\n\
 /XStep 8\n\
 /YStep 4\n\
 /PaintProc\n\
 {\n\
  pop\n\
  newpath\n\
  .7 setlinewidth\n\
  -2 -1 moveto\n\
  12 6 rlineto\n\
  stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P1 exch def\n\
"
#define		FILL_PAT02	"\
% right30\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-2 -4 10 5]\n\
 /XStep 8\n\
 /YStep 4\n\
 /PaintProc\n\
 {\n\
  pop\n\
  newpath\n\
  -2 5 moveto\n\
  .7 setlinewidth\n\
  12 -6 rlineto\n\
  stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P2 exch def\n\
"
#define		FILL_PAT03	"\
% crosshatch30\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-2 -4 10 5]\n\
 /XStep 8\n\
 /YStep 4\n\
 /PaintProc\n\
 {\n\
  pop\n\
  newpath\n\
  .7 setlinewidth\n\
  -2 5 moveto\n\
  12 -6 rlineto\n\
  stroke\n\
  newpath\n\
  .7 setlinewidth\n\
  -2 -1 moveto\n\
  12 6 rlineto\n\
  stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P3 exch def\n\
"
#define		FILL_PAT04	"\
% left45\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-1 -1 9 9]\n\
 /XStep 8\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  newpath\n\
  1 setlinewidth\n\
  -1 -1 moveto\n\
  9 9 lineto\n\
  stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P4 exch def\n\
"
#define		FILL_PAT05	"\
% right45\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-1 -1 9 9]\n\
 /XStep 8\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  newpath\n\
  1 setlinewidth\n\
  -1 9 moveto\n\
  9 -1 lineto\n\
  stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P5 exch def\n\
"
#define		FILL_PAT06	"\
% crosshatch45\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-1 -1 9 9] \n\
 /XStep 8\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  newpath\n\
  1 setlinewidth\n\
  -1 9 moveto\n\
  9 -1 lineto\n\
  stroke\n\
  -1 -1 moveto\n\
  9 9 lineto\n\
  stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P6 exch def\n\
"
#define		FILL_PAT07	"\
% bricks\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-1 0 17 17]  % At least linewidth bigger than Xstep and Ystep\n\
 /XStep 16           % These numbers mimic old Xfig bitmaps\n\
 /YStep 16\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0 0 moveto 0 8 lineto stroke\n\
  newpath 8 8 moveto 8 16 lineto stroke\n\
  newpath 0 8 moveto 16 8 lineto stroke\n\
  newpath 0 16 moveto 16 16 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P7 exch def\n\
"
#define		FILL_PAT08	"\
% vertical bricks\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 -1 17 17]  % At least linewidth bigger than Xstep and Ystep\n\
 /XStep 16\n\
 /YStep 16\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0 0 moveto 8 0 lineto stroke\n\
  newpath 8 8 moveto 16 8 lineto stroke\n\
  newpath 8 0 moveto 8 16 lineto stroke\n\
  newpath 16 0 moveto 16 16 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P8 exch def\n\
"
#define		FILL_PAT09	"\
% horizontal lines\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 4 4]  % At least linewidth bigger than Xstep and Ystep\n\
 /XStep 4\n\
 /YStep 4\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0 3.5 moveto 4 3.5 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P9 exch def\n\
"
#define		FILL_PAT10	"\
% vertical lines\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 4 4]\n\
 /XStep 4\n\
 /YStep 4\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 3.5 0 moveto 3.5 4 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P10 exch def\n\
"
#define		FILL_PAT11	"\
% crosshatch lines\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 4 4]\n\
 /XStep 4\n\
 /YStep 4\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 3.5 0 moveto 3.5 4 lineto stroke\n\
  newpath 0 3.5 moveto 4 3.5 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P11 exch def\n\
"
#define		FILL_PAT12	"\
% left-shingles\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 25 24]\n\
 /XStep 24\n\
 /YStep 24\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0 0.5 moveto 24 0.5 lineto stroke\n\
  newpath 0 8.5 moveto 24 8.5 lineto stroke\n\
  newpath 0 16.5 moveto 24 16.5 lineto stroke\n\
  newpath 4 24.5 moveto 8 16.5 lineto stroke\n\
  newpath 16 0.5 moveto 12 8.5 lineto stroke\n\
  newpath 20 16.5 moveto 24 8.5 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P12 exch def\n\
"
#define		FILL_PAT13	"\
% right-shingles\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 25 24]\n\
 /XStep 24\n\
 /YStep 24\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0 0.5 moveto 24 0.5 lineto stroke\n\
  newpath 0 8.5 moveto 24 8.5 lineto stroke\n\
  newpath 0 16.5 moveto 24 16.5 lineto stroke\n\
  newpath 4 8.5 moveto 8 16.5 lineto stroke\n\
  newpath 12 0.5 moveto 16 8.5 lineto stroke\n\
  newpath 20 16.5 moveto 24 24.5 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P13 exch def\n\
"
#define		FILL_PAT14	"\
% vertical left-shingles\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 24 25]\n\
 /XStep 24\n\
 /YStep 24\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0.5 0 moveto 0.5 24 lineto stroke\n\
  newpath 8.5 0 moveto 8.5 24 lineto stroke\n\
  newpath 16.5 0 moveto 16.5 24 lineto stroke\n\
  newpath 8.5 4 moveto 16.5 8 lineto stroke\n\
  newpath 0.5 12 moveto 8.5 16 lineto stroke\n\
  newpath 16.5 20 moveto 24.5 24 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P14 exch def\n\
"
#define		FILL_PAT15	"\
% vertical right-shingles\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 25 25]\n\
 /XStep 24\n\
 /YStep 24\n\
 /PaintProc\n\
 {\n\
  pop\n\
  1 setlinewidth 0 setlinecap\n\
  newpath 0.5 0 moveto 0.5 24 lineto stroke\n\
  newpath 8.5 0 moveto 8.5 24 lineto stroke\n\
  newpath 16.5 0 moveto 16.5 24 lineto stroke\n\
  newpath 24.5 4 moveto 16.5 8 lineto stroke\n\
  newpath 0.5 16 moveto 8.5 12 lineto stroke\n\
  newpath 16.5 20 moveto 8.5 24 lineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P15 exch def\n\
"
#define		FILL_PAT16	"\
% fishscales\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 -1 17 9]\n\
 /XStep 16\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  0.7 setlinewidth 0 setlinecap\n\
  newpath 8 -7 11 43 137 arc stroke\n\
  newpath 0 -3 11 43 137 arc stroke\n\
  newpath 16 -3 11 43 137 arc stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P16 exch def\n\
"
#define		FILL_PAT17	"\
% small fishscales\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 -0.5 8 8.5]\n\
 /XStep 8\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  0.7 setlinewidth 0 setlinecap\n\
  newpath 4 0 4 0 180 arc stroke\n\
  newpath 0 4 4 0 180 arc stroke\n\
  newpath 8 4 4 0 180 arc stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P17 exch def\n\
"
#define		FILL_PAT18	"\
% circles\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [-0.35 -0.35 16.35 16.35] % (0, 16) plus 1/2 linewidth\n\
 /XStep 16\n\
 /YStep 16\n\
 /PaintProc\n\
 {\n\
  pop\n\
  0.7 setlinewidth 0 setlinecap\n\
  newpath 8 8 8 0 360 arc stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P18 exch def\n\
"
#define		FILL_PAT19	"\
% hexagons\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 1\n\
 /BBox [-0.5 -0.35 27 17]\n\
 /XStep 26\n\
 /YStep 16\n\
 /PaintProc\n\
 {\n\
  pop\n\
  0.7 setlinewidth 0 setlinejoin newpath\n\
  4 0 moveto\n\
  9 0 rlineto      % right\n\
  4 8 rlineto      % up-right\n\
  -4 8 rlineto     % up-left\n\
  -9 0 rmoveto     % back\n\
  -4 -8 rlineto     % down-left\n\
  4 -8 rlineto 1 0 rlineto stroke % down-right\n\
  newpath 17 8 moveto 9 0 rlineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P19 exch def\n\
"
#define		FILL_PAT20	"\
% octagons\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 2\n\
 /BBox [0 0 16 16]\n\
 /XStep 16\n\
 /YStep 16\n\
 /PaintProc\n\
 {\n\
  pop\n\
  .8 setlinewidth 0 setlinejoin newpath\n\
  5 0 moveto 6 0 rlineto 5 5 rlineto 0 6 rlineto\n\
  -5 5 rlineto -6 0 rlineto -5 -5 rlineto 0 -6 rlineto closepath stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P20 exch def\n\
"
#define		FILL_PAT21	"\
% horizontal sawtooth lines\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 1\n\
 /BBox [0 0 8 8]\n\
 /XStep 8\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  .8 setlinewidth 0 setlinejoin newpath\n\
  -1 3 moveto 1 -1 rlineto 4 4 rlineto 4 -4 rlineto 1 1 rlineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P21 exch def\n\
"
#define		FILL_PAT22	"\
% vertical sawtooth lines\n\
<<\n\
 /PatternType 1\n\
 /PaintType 2\n\
 /TilingType 1\n\
 /BBox [0 0 8.5 8]\n\
 /XStep 8\n\
 /YStep 8\n\
 /PaintProc\n\
 {\n\
  pop\n\
  .8 setlinewidth 0 setlinejoin newpath\n\
  3 -1 moveto -1 1 rlineto 4 4 rlineto -4 4 rlineto 1 1 rlineto stroke\n\
 } bind\n\
\n\
>>\n\
\n\
matrix\n\
makepattern\n\
/P22 exch def\n\
"

#define		SPECIAL_CHAR_1	"\
/reencdict 12 dict def /ReEncode { reencdict begin\n\
/newcodesandnames exch def /newfontname exch def /basefontname exch def\n\
/basefontdict basefontname findfont def /newfont basefontdict maxlength dict def\n\
basefontdict { exch dup /FID ne { dup /Encoding eq\n\
{ exch dup length array copy newfont 3 1 roll put }\n\
{ exch newfont 3 1 roll put } ifelse } { pop pop } ifelse } forall\n\
newfont /FontName newfontname put newcodesandnames aload pop\n\
128 1 255 { newfont /Encoding get exch /.notdef put } for\n\
newcodesandnames length 2 idiv { newfont /Encoding get 3 1 roll put } repeat\n\
newfontname newfont definefont pop end } def\n\
/isovec [\n\
"
#define		SPECIAL_CHAR_2	"\
8#055 /minus 8#200 /grave 8#201 /acute 8#202 /circumflex 8#203 /tilde\n\
8#204 /macron 8#205 /breve 8#206 /dotaccent 8#207 /dieresis\n\
8#210 /ring 8#211 /cedilla 8#212 /hungarumlaut 8#213 /ogonek 8#214 /caron\n\
8#220 /dotlessi 8#230 /oe 8#231 /OE\n\
8#240 /space 8#241 /exclamdown 8#242 /cent 8#243 /sterling\n\
8#244 /currency 8#245 /yen 8#246 /brokenbar 8#247 /section 8#250 /dieresis\n\
8#251 /copyright 8#252 /ordfeminine 8#253 /guillemotleft 8#254 /logicalnot\n\
8#255 /hyphen 8#256 /registered 8#257 /macron 8#260 /degree 8#261 /plusminus\n\
8#262 /twosuperior 8#263 /threesuperior 8#264 /acute 8#265 /mu 8#266 /paragraph\n\
8#267 /periodcentered 8#270 /cedilla 8#271 /onesuperior 8#272 /ordmasculine\n\
8#273 /guillemotright 8#274 /onequarter 8#275 /onehalf\n\
8#276 /threequarters 8#277 /questiondown 8#300 /Agrave 8#301 /Aacute\n\
8#302 /Acircumflex 8#303 /Atilde 8#304 /Adieresis 8#305 /Aring\n\
"
#define		SPECIAL_CHAR_3	"\
8#306 /AE 8#307 /Ccedilla 8#310 /Egrave 8#311 /Eacute\n\
8#312 /Ecircumflex 8#313 /Edieresis 8#314 /Igrave 8#315 /Iacute\n\
8#316 /Icircumflex 8#317 /Idieresis 8#320 /Eth 8#321 /Ntilde 8#322 /Ograve\n\
8#323 /Oacute 8#324 /Ocircumflex 8#325 /Otilde 8#326 /Odieresis 8#327 /multiply\n\
8#330 /Oslash 8#331 /Ugrave 8#332 /Uacute 8#333 /Ucircumflex\n\
8#334 /Udieresis 8#335 /Yacute 8#336 /Thorn 8#337 /germandbls 8#340 /agrave\n\
8#341 /aacute 8#342 /acircumflex 8#343 /atilde 8#344 /adieresis 8#345 /aring\n\
8#346 /ae 8#347 /ccedilla 8#350 /egrave 8#351 /eacute\n\
8#352 /ecircumflex 8#353 /edieresis 8#354 /igrave 8#355 /iacute\n\
8#356 /icircumflex 8#357 /idieresis 8#360 /eth 8#361 /ntilde 8#362 /ograve\n\
8#363 /oacute 8#364 /ocircumflex 8#365 /otilde 8#366 /odieresis 8#367 /divide\n\
8#370 /oslash 8#371 /ugrave 8#372 /uacute 8#373 /ucircumflex\n\
8#374 /udieresis 8#375 /yacute 8#376 /thorn 8#377 /ydieresis\
] def\n\
"

#define		ELLIPSE_PS	" \
/DrawEllipse {\n\
	/endangle exch def\n\
	/startangle exch def\n\
	/yrad exch def\n\
	/xrad exch def\n\
	/y exch def\n\
	/x exch def\n\
	/savematrix mtrx currentmatrix def\n\
	x y tr xrad yrad sc 0 0 1 startangle endangle arc\n\
	closepath\n\
	savematrix setmatrix\n\
	} def\n\
"
/* The original PostScript definition for adding a spline section to the
 * current path uses recursive bisection.  The following definition using the
 * curveto operator is more efficient since it executes at compiled rather
 * than interpreted code speed.  The Bezier control points are 2/3 of the way
 * from z1 (and z3) to z2.
 *
 * ---Rene Llames, 21 July 1988.
 */
#define		SPLINE_PS	" \
/DrawSplineSection {\n\
	/y3 exch def\n\
	/x3 exch def\n\
	/y2 exch def\n\
	/x2 exch def\n\
	/y1 exch def\n\
	/x1 exch def\n\
	/xa x1 x2 x1 sub 0.666667 mul add def\n\
	/ya y1 y2 y1 sub 0.666667 mul add def\n\
	/xb x3 x2 x3 sub 0.666667 mul add def\n\
	/yb y3 y2 y3 sub 0.666667 mul add def\n\
	x1 y1 lineto\n\
	xa ya xb yb x3 y3 curveto\n\
	} def\n\
"
#define		END_PROLOG	"\
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def\n\
/$F2psEnd {$F2psEnteredState restore end} def\n\
"