home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 521.lha / ProMouse_v1.20 / ProMouse.Docs < prev    next >
Text File  |  1991-06-09  |  1KB  |  36 lines

  1.                   ProMouse Version 1.20 (C) by Robert Kozak.
  2.  
  3.  
  4. This is a small utility I wrote up for a friend of mine. YES, this is another
  5. mouse accellerator but unlike most others this one is Proportional. That is,
  6. this mouse acc. goes farther as you go faster (or is that goes faster as you
  7. move farther?). The reason he asked me for it was that he never saw one like
  8. it on the Amiga. From what I understand this is the way the Mac mouse is and
  9. is more natural. 
  10.  
  11. Anyway here it is for your perusal. You may do what ever you wish with the
  12. code and/or executable as long as it is not for profit.
  13.  
  14. For those interested here is the formula that I used to accell. the mouse:
  15.  
  16.         x := x * ABS(x) DIV S
  17.         y := y * ABS(y) DIV S
  18.         
  19.     x : MouseX coordinate
  20.     y : MouseY coordinate
  21.     S : Sensitivity. This value is derived from the number supplied by
  22.     the user. S := 11 - CommandLineArg
  23.     
  24. If you have a better formula please pass it on.
  25.  
  26.  Robert Kozak.
  27.  
  28.  For comments or suggestions I can be reached on CRS (416) 629-0138 or as
  29.  rkozak@contact.uucp
  30.   
  31.   The source code is written with M2Sprint's Modula-2 (Great package).
  32.   The code is 6652 bytes long. -- If larger/different maybe a virus?
  33.    
  34.    Robert:
  35.    
  36.