home *** CD-ROM | disk | FTP | other *** search
- %
- % --- Not yet implemented ---
- %
-
- % --- Clipping
-
-
- % /clip {} def
- /clip {
- gsave
- 1 0 0 setrgbcolor
- [3] 0 setdash
- 0 setlinewidth
- stroke
- grestore
- } def
-
- /initclip {} def
- /eoclip {} def
- /clippath {
- newpath
- 0 0 moveto
- 0 1 lineto
- 1 1 lineto
- 0 1 lineto
- closepath
- } def
-
- % --- Screen
-
- /$screen <<
- /freq 300
- /angle 0
- /proc {}
- >> def
-
- /currentscreen {
- //$screen /freq get
- //$screen /angle get
- //$screen /proc get
- } def
-
- /setscreen {
- //$screen /proc 3 -1 roll put
- //$screen /angle 3 -1 roll put
- //$screen /freq 3 -1 roll put
- } def
-
- % --- Nulldevice
-
- /nulldevice {} def
-