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

  1. defineps plotTrajectory(float sx,sy,dx,dy)
  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 line segment
  13.            sx sy moveto
  14.       dx dy lineto
  15.            stroke
  16.       flushgraphics
  17.       
  18. endps