Mercurial > fife-parpg
comparison doc/dependencies/moduledeps.ps @ 0:4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 29 Jun 2008 18:44:17 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4a0efb7baf70 |
---|---|
1 %!PS-Adobe-2.0 | |
2 %%Creator: dot version 2.8 (Wed Dec 20 14:50:18 UTC 2006) | |
3 %%For: (anon) anon | |
4 %%Title: source tree | |
5 %%Pages: (atend) | |
6 %%BoundingBox: 36 36 620 764 | |
7 %%EndComments | |
8 save | |
9 %%BeginProlog | |
10 /DotDict 200 dict def | |
11 DotDict begin | |
12 | |
13 /setupLatin1 { | |
14 mark | |
15 /EncodingVector 256 array def | |
16 EncodingVector 0 | |
17 | |
18 ISOLatin1Encoding 0 255 getinterval putinterval | |
19 EncodingVector 45 /hyphen put | |
20 | |
21 % Set up ISO Latin 1 character encoding | |
22 /starnetISO { | |
23 dup dup findfont dup length dict begin | |
24 { 1 index /FID ne { def }{ pop pop } ifelse | |
25 } forall | |
26 /Encoding EncodingVector def | |
27 currentdict end definefont | |
28 } def | |
29 /Times-Roman starnetISO def | |
30 /Times-Italic starnetISO def | |
31 /Times-Bold starnetISO def | |
32 /Times-BoldItalic starnetISO def | |
33 /Helvetica starnetISO def | |
34 /Helvetica-Oblique starnetISO def | |
35 /Helvetica-Bold starnetISO def | |
36 /Helvetica-BoldOblique starnetISO def | |
37 /Courier starnetISO def | |
38 /Courier-Oblique starnetISO def | |
39 /Courier-Bold starnetISO def | |
40 /Courier-BoldOblique starnetISO def | |
41 cleartomark | |
42 } bind def | |
43 | |
44 %%BeginResource: procset graphviz 0 0 | |
45 /coord-font-family /Times-Roman def | |
46 /default-font-family /Times-Roman def | |
47 /coordfont coord-font-family findfont 8 scalefont def | |
48 | |
49 /InvScaleFactor 1.0 def | |
50 /set_scale { | |
51 dup 1 exch div /InvScaleFactor exch def | |
52 dup scale | |
53 } bind def | |
54 | |
55 % styles | |
56 /solid { [] 0 setdash } bind def | |
57 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def | |
58 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def | |
59 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def | |
60 /bold { 2 setlinewidth } bind def | |
61 /filled { } bind def | |
62 /unfilled { } bind def | |
63 /rounded { } bind def | |
64 /diagonals { } bind def | |
65 | |
66 % hooks for setting color | |
67 /nodecolor { sethsbcolor } bind def | |
68 /edgecolor { sethsbcolor } bind def | |
69 /graphcolor { sethsbcolor } bind def | |
70 /nopcolor {pop pop pop} bind def | |
71 | |
72 /beginpage { % i j npages | |
73 /npages exch def | |
74 /j exch def | |
75 /i exch def | |
76 /str 10 string def | |
77 npages 1 gt { | |
78 gsave | |
79 coordfont setfont | |
80 0 0 moveto | |
81 (\() show i str cvs show (,) show j str cvs show (\)) show | |
82 grestore | |
83 } if | |
84 } bind def | |
85 | |
86 /set_font { | |
87 findfont exch | |
88 scalefont setfont | |
89 } def | |
90 | |
91 % draw aligned label in bounding box aligned to current point | |
92 /alignedtext { % width adj text | |
93 /text exch def | |
94 /adj exch def | |
95 /width exch def | |
96 gsave | |
97 width 0 gt { | |
98 text stringwidth pop adj mul 0 rmoveto | |
99 } if | |
100 [] 0 setdash | |
101 text show | |
102 grestore | |
103 } def | |
104 | |
105 /boxprim { % xcorner ycorner xsize ysize | |
106 4 2 roll | |
107 moveto | |
108 2 copy | |
109 exch 0 rlineto | |
110 0 exch rlineto | |
111 pop neg 0 rlineto | |
112 closepath | |
113 } bind def | |
114 | |
115 /ellipse_path { | |
116 /ry exch def | |
117 /rx exch def | |
118 /y exch def | |
119 /x exch def | |
120 matrix currentmatrix | |
121 newpath | |
122 x y translate | |
123 rx ry scale | |
124 0 0 1 0 360 arc | |
125 setmatrix | |
126 } bind def | |
127 | |
128 /endpage { showpage } bind def | |
129 /showpage { } def | |
130 | |
131 /layercolorseq | |
132 [ % layer color sequence - darkest to lightest | |
133 [0 0 0] | |
134 [.2 .8 .8] | |
135 [.4 .8 .8] | |
136 [.6 .8 .8] | |
137 [.8 .8 .8] | |
138 ] | |
139 def | |
140 | |
141 /layerlen layercolorseq length def | |
142 | |
143 /setlayer {/maxlayer exch def /curlayer exch def | |
144 layercolorseq curlayer 1 sub layerlen mod get | |
145 aload pop sethsbcolor | |
146 /nodecolor {nopcolor} def | |
147 /edgecolor {nopcolor} def | |
148 /graphcolor {nopcolor} def | |
149 } bind def | |
150 | |
151 /onlayer { curlayer ne {invis} if } def | |
152 | |
153 /onlayers { | |
154 /myupper exch def | |
155 /mylower exch def | |
156 curlayer mylower lt | |
157 curlayer myupper gt | |
158 or | |
159 {invis} if | |
160 } def | |
161 | |
162 /curlayer 0 def | |
163 | |
164 %%EndResource | |
165 %%EndProlog | |
166 %%BeginSetup | |
167 14 default-font-family set_font | |
168 1 setmiterlimit | |
169 % /arrowlength 10 def | |
170 % /arrowwidth 5 def | |
171 | |
172 % make sure pdfmark is harmless for PS-interpreters other than Distiller | |
173 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse | |
174 % make '<<' and '>>' safe on PS Level 1 devices | |
175 /languagelevel where {pop languagelevel}{1} ifelse | |
176 2 lt { | |
177 userdict (<<) cvn ([) cvn load put | |
178 userdict (>>) cvn ([) cvn load put | |
179 } if | |
180 | |
181 %%EndSetup | |
182 %%Page: 1 1 | |
183 %%PageBoundingBox: 36 36 620 764 | |
184 %%PageOrientation: Portrait | |
185 gsave | |
186 36 36 584 728 boxprim clip newpath | |
187 36 36 translate | |
188 0 0 1 beginpage | |
189 0.9584 set_scale | |
190 4 4 translate 0 rotate | |
191 0.000 0.000 1.000 graphcolor | |
192 0.000 0.000 1.000 graphcolor | |
193 newpath -6 -6 moveto | |
194 -6 758 lineto | |
195 607 758 lineto | |
196 607 -6 lineto | |
197 closepath | |
198 fill | |
199 0.000 0.000 1.000 graphcolor | |
200 newpath -6 -6 moveto | |
201 -6 758 lineto | |
202 607 758 lineto | |
203 607 -6 lineto | |
204 closepath | |
205 stroke | |
206 0.000 0.000 0.000 graphcolor | |
207 14.00 /Times-Roman set_font | |
208 % xml | |
209 gsave 10 dict begin | |
210 422 375 27 18 ellipse_path | |
211 stroke | |
212 gsave 10 dict begin | |
213 410 370 moveto | |
214 (xml) | |
215 [6.96 10.8 3.84] | |
216 xshow | |
217 end grestore | |
218 end grestore | |
219 % util | |
220 gsave 10 dict begin | |
221 367 41 27 18 ellipse_path | |
222 stroke | |
223 gsave 10 dict begin | |
224 357 36 moveto | |
225 (util) | |
226 [6.96 3.84 3.84 3.84] | |
227 xshow | |
228 end grestore | |
229 end grestore | |
230 % xml->util | |
231 newpath 421 357 moveto | |
232 419 324 413 250 403 190 curveto | |
233 395 147 383 99 375 69 curveto | |
234 stroke | |
235 gsave 10 dict begin | |
236 solid | |
237 1 setlinewidth | |
238 0.000 0.000 0.000 edgecolor | |
239 newpath 378 68 moveto | |
240 372 59 lineto | |
241 372 70 lineto | |
242 closepath | |
243 fill | |
244 0.000 0.000 0.000 edgecolor | |
245 newpath 378 68 moveto | |
246 372 59 lineto | |
247 372 70 lineto | |
248 closepath | |
249 stroke | |
250 end grestore | |
251 % vfs | |
252 gsave 10 dict begin | |
253 367 208 27 18 ellipse_path | |
254 stroke | |
255 gsave 10 dict begin | |
256 358 203 moveto | |
257 (vfs) | |
258 [6.96 4.56 5.52] | |
259 xshow | |
260 end grestore | |
261 end grestore | |
262 % xml->vfs | |
263 newpath 416 357 moveto | |
264 407 328 387 270 376 236 curveto | |
265 stroke | |
266 gsave 10 dict begin | |
267 solid | |
268 1 setlinewidth | |
269 0.000 0.000 0.000 edgecolor | |
270 newpath 379 235 moveto | |
271 373 226 lineto | |
272 373 237 lineto | |
273 closepath | |
274 fill | |
275 0.000 0.000 0.000 edgecolor | |
276 newpath 379 235 moveto | |
277 373 226 lineto | |
278 373 237 lineto | |
279 closepath | |
280 stroke | |
281 end grestore | |
282 % vfs->util | |
283 newpath 367 190 moveto | |
284 367 161 367 104 367 69 curveto | |
285 stroke | |
286 gsave 10 dict begin | |
287 solid | |
288 1 setlinewidth | |
289 0.000 0.000 0.000 edgecolor | |
290 newpath 371 69 moveto | |
291 367 59 lineto | |
292 364 69 lineto | |
293 closepath | |
294 fill | |
295 0.000 0.000 0.000 edgecolor | |
296 newpath 371 69 moveto | |
297 367 59 lineto | |
298 364 69 lineto | |
299 closepath | |
300 stroke | |
301 end grestore | |
302 % pathfinder | |
303 gsave 10 dict begin | |
304 42 709 42 18 ellipse_path | |
305 stroke | |
306 gsave 10 dict begin | |
307 12 704 moveto | |
308 (pathfinder) | |
309 [6.96 6.24 3.84 6.96 4.56 3.84 6.96 6.96 6.24 4.56] | |
310 xshow | |
311 end grestore | |
312 end grestore | |
313 % model | |
314 gsave 10 dict begin | |
315 42 542 30 18 ellipse_path | |
316 stroke | |
317 gsave 10 dict begin | |
318 24 537 moveto | |
319 (model) | |
320 [10.8 6.96 6.96 6.24 3.84] | |
321 xshow | |
322 end grestore | |
323 end grestore | |
324 % pathfinder->model | |
325 newpath 42 691 moveto | |
326 42 662 42 605 42 570 curveto | |
327 stroke | |
328 gsave 10 dict begin | |
329 solid | |
330 1 setlinewidth | |
331 0.000 0.000 0.000 edgecolor | |
332 newpath 46 570 moveto | |
333 42 560 lineto | |
334 39 570 lineto | |
335 closepath | |
336 fill | |
337 0.000 0.000 0.000 edgecolor | |
338 newpath 46 570 moveto | |
339 42 560 lineto | |
340 39 570 lineto | |
341 closepath | |
342 stroke | |
343 end grestore | |
344 % model->util | |
345 newpath 39 524 moveto | |
346 33 490 24 416 40 357 curveto | |
347 63 273 79 252 138 190 curveto | |
348 198 127 288 79 335 55 curveto | |
349 stroke | |
350 gsave 10 dict begin | |
351 solid | |
352 1 setlinewidth | |
353 0.000 0.000 0.000 edgecolor | |
354 newpath 336 58 moveto | |
355 344 51 lineto | |
356 333 52 lineto | |
357 closepath | |
358 fill | |
359 0.000 0.000 0.000 edgecolor | |
360 newpath 336 58 moveto | |
361 344 51 lineto | |
362 333 52 lineto | |
363 closepath | |
364 stroke | |
365 end grestore | |
366 % gui | |
367 gsave 10 dict begin | |
368 215 542 27 18 ellipse_path | |
369 stroke | |
370 gsave 10 dict begin | |
371 206 537 moveto | |
372 (gui) | |
373 [6.96 6.96 3.84] | |
374 xshow | |
375 end grestore | |
376 end grestore | |
377 % gui->util | |
378 newpath 213 524 moveto | |
379 210 490 207 417 220 357 curveto | |
380 247 242 319 118 351 67 curveto | |
381 stroke | |
382 gsave 10 dict begin | |
383 solid | |
384 1 setlinewidth | |
385 0.000 0.000 0.000 edgecolor | |
386 newpath 354 68 moveto | |
387 356 58 lineto | |
388 348 65 lineto | |
389 closepath | |
390 fill | |
391 0.000 0.000 0.000 edgecolor | |
392 newpath 354 68 moveto | |
393 356 58 lineto | |
394 348 65 lineto | |
395 closepath | |
396 stroke | |
397 end grestore | |
398 % gui->vfs | |
399 newpath 213 524 moveto | |
400 211 490 209 413 234 357 curveto | |
401 258 302 310 254 341 228 curveto | |
402 stroke | |
403 gsave 10 dict begin | |
404 solid | |
405 1 setlinewidth | |
406 0.000 0.000 0.000 edgecolor | |
407 newpath 343 231 moveto | |
408 349 222 lineto | |
409 339 225 lineto | |
410 closepath | |
411 fill | |
412 0.000 0.000 0.000 edgecolor | |
413 newpath 343 231 moveto | |
414 349 222 lineto | |
415 339 225 lineto | |
416 closepath | |
417 stroke | |
418 end grestore | |
419 % video | |
420 gsave 10 dict begin | |
421 272 375 29 18 ellipse_path | |
422 stroke | |
423 gsave 10 dict begin | |
424 256 370 moveto | |
425 (video) | |
426 [6.96 3.84 6.96 6.24 6.96] | |
427 xshow | |
428 end grestore | |
429 end grestore | |
430 % gui->video | |
431 newpath 221 524 moveto | |
432 231 496 251 437 263 403 curveto | |
433 stroke | |
434 gsave 10 dict begin | |
435 solid | |
436 1 setlinewidth | |
437 0.000 0.000 0.000 edgecolor | |
438 newpath 266 404 moveto | |
439 266 393 lineto | |
440 260 402 lineto | |
441 closepath | |
442 fill | |
443 0.000 0.000 0.000 edgecolor | |
444 newpath 266 404 moveto | |
445 266 393 lineto | |
446 260 402 lineto | |
447 closepath | |
448 stroke | |
449 end grestore | |
450 % eventchannel | |
451 gsave 10 dict begin | |
452 99 375 50 18 ellipse_path | |
453 stroke | |
454 gsave 10 dict begin | |
455 62 370 moveto | |
456 (eventchannel) | |
457 [6.24 6.96 6.24 6.96 3.84 6.24 6.96 6.24 6.96 6.96 6.24 3.84] | |
458 xshow | |
459 end grestore | |
460 end grestore | |
461 % gui->eventchannel | |
462 newpath 203 525 moveto | |
463 183 496 141 436 117 401 curveto | |
464 stroke | |
465 gsave 10 dict begin | |
466 solid | |
467 1 setlinewidth | |
468 0.000 0.000 0.000 edgecolor | |
469 newpath 120 399 moveto | |
470 111 393 lineto | |
471 114 403 lineto | |
472 closepath | |
473 fill | |
474 0.000 0.000 0.000 edgecolor | |
475 newpath 120 399 moveto | |
476 111 393 lineto | |
477 114 403 lineto | |
478 closepath | |
479 stroke | |
480 end grestore | |
481 % video->util | |
482 newpath 277 357 moveto | |
483 293 302 340 135 359 69 curveto | |
484 stroke | |
485 gsave 10 dict begin | |
486 solid | |
487 1 setlinewidth | |
488 0.000 0.000 0.000 edgecolor | |
489 newpath 362 70 moveto | |
490 362 59 lineto | |
491 356 68 lineto | |
492 closepath | |
493 fill | |
494 0.000 0.000 0.000 edgecolor | |
495 newpath 362 70 moveto | |
496 362 59 lineto | |
497 356 68 lineto | |
498 closepath | |
499 stroke | |
500 end grestore | |
501 % eventchannel->util | |
502 newpath 102 357 moveto | |
503 108 322 124 242 163 190 curveto | |
504 210 127 291 79 336 56 curveto | |
505 stroke | |
506 gsave 10 dict begin | |
507 solid | |
508 1 setlinewidth | |
509 0.000 0.000 0.000 edgecolor | |
510 newpath 338 59 moveto | |
511 345 51 lineto | |
512 335 53 lineto | |
513 closepath | |
514 fill | |
515 0.000 0.000 0.000 edgecolor | |
516 newpath 338 59 moveto | |
517 345 51 lineto | |
518 335 53 lineto | |
519 closepath | |
520 stroke | |
521 end grestore | |
522 % loaders | |
523 gsave 10 dict begin | |
524 390 542 33 18 ellipse_path | |
525 stroke | |
526 gsave 10 dict begin | |
527 369 537 moveto | |
528 (loaders) | |
529 [3.84 6.96 6.24 6.96 6.24 4.56 5.52] | |
530 xshow | |
531 end grestore | |
532 end grestore | |
533 % loaders->xml | |
534 newpath 393 524 moveto | |
535 399 495 410 437 417 403 curveto | |
536 stroke | |
537 gsave 10 dict begin | |
538 solid | |
539 1 setlinewidth | |
540 0.000 0.000 0.000 edgecolor | |
541 newpath 420 403 moveto | |
542 419 393 lineto | |
543 414 402 lineto | |
544 closepath | |
545 fill | |
546 0.000 0.000 0.000 edgecolor | |
547 newpath 420 403 moveto | |
548 419 393 lineto | |
549 414 402 lineto | |
550 closepath | |
551 stroke | |
552 end grestore | |
553 % loaders->util | |
554 newpath 401 525 moveto | |
555 417 498 447 444 458 393 curveto | |
556 485 270 414 124 382 67 curveto | |
557 stroke | |
558 gsave 10 dict begin | |
559 solid | |
560 1 setlinewidth | |
561 0.000 0.000 0.000 edgecolor | |
562 newpath 385 65 moveto | |
563 377 58 lineto | |
564 379 68 lineto | |
565 closepath | |
566 fill | |
567 0.000 0.000 0.000 edgecolor | |
568 newpath 385 65 moveto | |
569 377 58 lineto | |
570 379 68 lineto | |
571 closepath | |
572 stroke | |
573 end grestore | |
574 % loaders->vfs | |
575 newpath 389 524 moveto | |
576 385 468 373 303 369 236 curveto | |
577 stroke | |
578 gsave 10 dict begin | |
579 solid | |
580 1 setlinewidth | |
581 0.000 0.000 0.000 edgecolor | |
582 newpath 372 236 moveto | |
583 368 226 lineto | |
584 366 236 lineto | |
585 closepath | |
586 fill | |
587 0.000 0.000 0.000 edgecolor | |
588 newpath 372 236 moveto | |
589 368 226 lineto | |
590 366 236 lineto | |
591 closepath | |
592 stroke | |
593 end grestore | |
594 % loaders->video | |
595 newpath 378 525 moveto | |
596 357 496 314 434 290 400 curveto | |
597 stroke | |
598 gsave 10 dict begin | |
599 solid | |
600 1 setlinewidth | |
601 0.000 0.000 0.000 edgecolor | |
602 newpath 293 398 moveto | |
603 284 392 lineto | |
604 287 402 lineto | |
605 closepath | |
606 fill | |
607 0.000 0.000 0.000 edgecolor | |
608 newpath 293 398 moveto | |
609 284 392 lineto | |
610 287 402 lineto | |
611 closepath | |
612 stroke | |
613 end grestore | |
614 % controller | |
615 gsave 10 dict begin | |
616 329 709 40 18 ellipse_path | |
617 stroke | |
618 gsave 10 dict begin | |
619 301 704 moveto | |
620 (controller) | |
621 [6.24 6.96 6.96 3.84 4.56 6.96 3.84 3.84 6.24 4.56] | |
622 xshow | |
623 end grestore | |
624 end grestore | |
625 % controller->util | |
626 newpath 356 696 moveto | |
627 398 673 479 625 524 560 curveto | |
628 567 496 561 469 572 393 curveto | |
629 585 299 560 269 511 190 curveto | |
630 478 137 425 88 393 61 curveto | |
631 stroke | |
632 gsave 10 dict begin | |
633 solid | |
634 1 setlinewidth | |
635 0.000 0.000 0.000 edgecolor | |
636 newpath 395 58 moveto | |
637 385 55 lineto | |
638 391 64 lineto | |
639 closepath | |
640 fill | |
641 0.000 0.000 0.000 edgecolor | |
642 newpath 395 58 moveto | |
643 385 55 lineto | |
644 391 64 lineto | |
645 closepath | |
646 stroke | |
647 end grestore | |
648 % controller->vfs | |
649 newpath 330 691 moveto | |
650 336 616 358 328 365 236 curveto | |
651 stroke | |
652 gsave 10 dict begin | |
653 solid | |
654 1 setlinewidth | |
655 0.000 0.000 0.000 edgecolor | |
656 newpath 368 236 moveto | |
657 366 226 lineto | |
658 362 236 lineto | |
659 closepath | |
660 fill | |
661 0.000 0.000 0.000 edgecolor | |
662 newpath 368 236 moveto | |
663 366 226 lineto | |
664 362 236 lineto | |
665 closepath | |
666 stroke | |
667 end grestore | |
668 % controller->model | |
669 newpath 304 695 moveto | |
670 252 664 130 593 73 560 curveto | |
671 stroke | |
672 gsave 10 dict begin | |
673 solid | |
674 1 setlinewidth | |
675 0.000 0.000 0.000 edgecolor | |
676 newpath 74 557 moveto | |
677 64 555 lineto | |
678 71 563 lineto | |
679 closepath | |
680 fill | |
681 0.000 0.000 0.000 edgecolor | |
682 newpath 74 557 moveto | |
683 64 555 lineto | |
684 71 563 lineto | |
685 closepath | |
686 stroke | |
687 end grestore | |
688 % controller->gui | |
689 newpath 317 692 moveto | |
690 297 662 256 601 232 567 curveto | |
691 stroke | |
692 gsave 10 dict begin | |
693 solid | |
694 1 setlinewidth | |
695 0.000 0.000 0.000 edgecolor | |
696 newpath 234 564 moveto | |
697 226 558 lineto | |
698 229 568 lineto | |
699 closepath | |
700 fill | |
701 0.000 0.000 0.000 edgecolor | |
702 newpath 234 564 moveto | |
703 226 558 lineto | |
704 229 568 lineto | |
705 closepath | |
706 stroke | |
707 end grestore | |
708 % controller->video | |
709 newpath 326 691 moveto | |
710 317 636 288 470 277 403 curveto | |
711 stroke | |
712 gsave 10 dict begin | |
713 solid | |
714 1 setlinewidth | |
715 0.000 0.000 0.000 edgecolor | |
716 newpath 280 402 moveto | |
717 275 393 lineto | |
718 274 403 lineto | |
719 closepath | |
720 fill | |
721 0.000 0.000 0.000 edgecolor | |
722 newpath 280 402 moveto | |
723 275 393 lineto | |
724 274 403 lineto | |
725 closepath | |
726 stroke | |
727 end grestore | |
728 % controller->eventchannel | |
729 newpath 309 693 moveto | |
730 278 668 217 615 179 560 curveto | |
731 144 509 120 440 107 403 curveto | |
732 stroke | |
733 gsave 10 dict begin | |
734 solid | |
735 1 setlinewidth | |
736 0.000 0.000 0.000 edgecolor | |
737 newpath 110 402 moveto | |
738 104 393 lineto | |
739 104 404 lineto | |
740 closepath | |
741 fill | |
742 0.000 0.000 0.000 edgecolor | |
743 newpath 110 402 moveto | |
744 104 393 lineto | |
745 104 404 lineto | |
746 closepath | |
747 stroke | |
748 end grestore | |
749 % controller->loaders | |
750 newpath 336 691 moveto | |
751 346 662 367 604 380 570 curveto | |
752 stroke | |
753 gsave 10 dict begin | |
754 solid | |
755 1 setlinewidth | |
756 0.000 0.000 0.000 edgecolor | |
757 newpath 383 571 moveto | |
758 383 560 lineto | |
759 377 569 lineto | |
760 closepath | |
761 fill | |
762 0.000 0.000 0.000 edgecolor | |
763 newpath 383 571 moveto | |
764 383 560 lineto | |
765 377 569 lineto | |
766 closepath | |
767 stroke | |
768 end grestore | |
769 % audio | |
770 gsave 10 dict begin | |
771 534 375 29 18 ellipse_path | |
772 stroke | |
773 gsave 10 dict begin | |
774 518 370 moveto | |
775 (audio) | |
776 [6.24 6.96 6.96 3.84 6.96] | |
777 xshow | |
778 end grestore | |
779 end grestore | |
780 % controller->audio | |
781 newpath 355 695 moveto | |
782 394 672 468 623 504 560 curveto | |
783 531 510 535 442 535 403 curveto | |
784 stroke | |
785 gsave 10 dict begin | |
786 solid | |
787 1 setlinewidth | |
788 0.000 0.000 0.000 edgecolor | |
789 newpath 539 403 moveto | |
790 535 393 lineto | |
791 532 403 lineto | |
792 closepath | |
793 fill | |
794 0.000 0.000 0.000 edgecolor | |
795 newpath 539 403 moveto | |
796 535 393 lineto | |
797 532 403 lineto | |
798 closepath | |
799 stroke | |
800 end grestore | |
801 % view | |
802 gsave 10 dict begin | |
803 468 542 27 18 ellipse_path | |
804 stroke | |
805 gsave 10 dict begin | |
806 454 537 moveto | |
807 (view) | |
808 [6.96 3.84 6.24 10.08] | |
809 xshow | |
810 end grestore | |
811 end grestore | |
812 % controller->view | |
813 newpath 343 692 moveto | |
814 368 662 420 600 449 566 curveto | |
815 stroke | |
816 gsave 10 dict begin | |
817 solid | |
818 1 setlinewidth | |
819 0.000 0.000 0.000 edgecolor | |
820 newpath 452 568 moveto | |
821 455 558 lineto | |
822 446 564 lineto | |
823 closepath | |
824 fill | |
825 0.000 0.000 0.000 edgecolor | |
826 newpath 452 568 moveto | |
827 455 558 lineto | |
828 446 564 lineto | |
829 closepath | |
830 stroke | |
831 end grestore | |
832 % audio->util | |
833 newpath 533 357 moveto | |
834 529 323 519 246 491 190 curveto | |
835 465 138 419 89 391 63 curveto | |
836 stroke | |
837 gsave 10 dict begin | |
838 solid | |
839 1 setlinewidth | |
840 0.000 0.000 0.000 edgecolor | |
841 newpath 393 60 moveto | |
842 383 56 lineto | |
843 388 65 lineto | |
844 closepath | |
845 fill | |
846 0.000 0.000 0.000 edgecolor | |
847 newpath 393 60 moveto | |
848 383 56 lineto | |
849 388 65 lineto | |
850 closepath | |
851 stroke | |
852 end grestore | |
853 % audio->vfs | |
854 newpath 519 360 moveto | |
855 489 330 424 265 389 230 curveto | |
856 stroke | |
857 gsave 10 dict begin | |
858 solid | |
859 1 setlinewidth | |
860 0.000 0.000 0.000 edgecolor | |
861 newpath 392 228 moveto | |
862 382 223 lineto | |
863 387 233 lineto | |
864 closepath | |
865 fill | |
866 0.000 0.000 0.000 edgecolor | |
867 newpath 392 228 moveto | |
868 382 223 lineto | |
869 387 233 lineto | |
870 closepath | |
871 stroke | |
872 end grestore | |
873 endpage | |
874 showpage | |
875 grestore | |
876 %%PageTrailer | |
877 %%EndPage: 1 | |
878 %%Trailer | |
879 %%Pages: 1 | |
880 end | |
881 restore | |
882 %%EOF |