home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / MCommand / Source / markLoc.psw < prev    next >
Encoding:
Text File  |  1994-04-01  |  382 b   |  21 lines

  1. defineps markLoc(float x,y)
  2. %
  3. %
  4. %   Copyright 1992, Stefanos Kiakas. All rights reserved.
  5. %
  6. %   You may not delete this notice.
  7. %
  8. %
  9.           1.0  3.0 div setgray           % set gray value
  10.            newpath
  11.  
  12.           % draw cross hairs
  13.       x   5.0 sub  y moveto
  14.       x   5.0 add y lineto
  15.       stroke
  16.       x  y  5.0 sub moveto
  17.       x  y  5.0 add lineto
  18.       stroke
  19.  
  20.       flushgraphics
  21. endps