home *** CD-ROM | disk | FTP | other *** search
-
- defineps drawLabel(float x1, y1; char *address; float x2, y2)
- %% $Id: MachOViewwraps.psw,v 1.4 94/05/10 22:41:50 ediger Exp Locker: ediger $
- %% font manipulation
-
- 0.0 setgray
- x1 y1 moveto
- (address) show
- 2. 0. rmoveto
- x2 y2 lineto
-
- endps
-
- defineps drawLeftArrowHead(float x1, y1, side)
- %% draw an arrowhead pointing left at (x1, y1)
- 0.0 setgray
- newpath
- x1 y1 moveto
- 0.866 side mul
- 0.0 side 2.1 div sub rlineto
- 0.0 side rlineto
- x1 y1 lineto
- stroke
- endps
-
- defineps drawBox(float x1, y1, x2, y2)
- %% draw a box with (x1, y1) and (x2, y2) as diagonally opposed corners
- 0.0 setgray
- 0.10 setlinewidth
- newpath
- x1 y1 moveto
- x1 y2 lineto
- x2 y2 lineto
- x2 y1 lineto
- x1 y1 lineto
- stroke
- endps
-