home *** CD-ROM | disk | FTP | other *** search
- defineps drawSquare()
- 0.0 setgray
- newpath
- 25 25 moveto
- 50 0 rlineto
- 0 50 rlineto
- -50 0 rlineto
- closepath
- fill
- endps
-
- defineps drawHeart()
- 0.0 setgray
- newpath
- 50 50 moveto
- 30 100 0.0 50 50.0 10 curveto
- 50 50 moveto
- 70 100 100 50 50 10 curveto
- closepath
- fill
- endps
-
- defineps drawCircle()
- 0.0 setgray
- 0 0 30 0 360 arc fill
- endps
-
- defineps drawDiamond()
- 0.0 setgray
- newpath
- 50 10 moveto
- 80 50 lineto
- 50 90 lineto
- 20 50 lineto
- closepath
- fill
- endps
-
- defineps drawFlower()
- gsave
- 0.0 setgray
- 50 50 translate
- newpath
- 0 0 moveto
- 40 50 -40 50 0 0 curveto
- 60 rotate
- 40 50 -40 50 0 0 curveto
- 60 rotate
- 40 50 -40 50 0 0 curveto
- 60 rotate
- 40 50 -40 50 0 0 curveto
- 60 rotate
- 40 50 -40 50 0 0 curveto
- 60 rotate
- 40 50 -40 50 0 0 curveto
- closepath
- fill
- grestore
- endps
-
- defineps drawTriangle()
- 0 setgray
- newpath
- 90 10 moveto
- 50 90 lineto
- 10 10 lineto
- closepath
- fill
- endps
-
- defineps drawRectangle()
- 0 setgray
- newpath
- 10 25 moveto
- 80 0 rlineto
- 0 50 rlineto
- -80 0 rlineto
- closepath
- fill
- endps
-
- defineps drawLine()
- 0 setgray
- 20 setlinewidth
- newpath
- 50 0 moveto
- 0 100 rlineto
- stroke
- endps
-