home *** CD-ROM | disk | FTP | other *** search
- %%BeginResource: procset MoleDrawDict 1.0 0
- %%Title: MoleDraw Postscript Dictionary
- %%Version: 1.0 0
- %%CreationDate: 19/2/94
- %%Copyright: (c) Simon Kilvington, 1994
- userdict /MoleDrawDict 14 dict dup begin put
- /initialise { MoleDrawDict begin } def
- /drawinit { % set up styles
- 0 setlinecap % butt
- 0 setlinejoin % mitre
- 10 setmiterlimit
- newpath
- } def
- /m { moveto } bind def % general shortcuts
- /l { lineto } bind def
- /c { curveto } bind def
- /s { stroke } bind def
- /f { fill } bind def
- /fg { setrgbcolor } bind def
- /ls { 0 setdash setlinewidth } bind def % line style: width [dash spc]
- /b { moveto lineto stroke } bind def % bond: x1 y1 x2 y2
- /rf { findfont def } bind def % reference font: /ref /font
- /sf { scalefont setfont } bind def % select font: ref size
- /t { moveto show } bind def % text: text x y
- /terminate { currentdict MoleDrawDict eq { end } if } def
- currentdict end
- %%EndResource
-