diff --git a/README.md b/README.md index 9120dc3..2a91365 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,26 @@ Default value (5) -t / --Tolerance [number]: The lowest amount of movement that can start trackball spinning. -Default value (10) +Default value (7) -s / --Sensitivity [number]: The lowest amount of movement that can interrupt trackball spinning. -Default value (2) +Default value (1) -f / --Friction [number] The rate at which the trackball slows down. 1 eliminates all slowdown. >1 values cause the trackball to speed up. -Default value (.98) +Default value (.975) + +# Downloads +[Github](https://github.com/chaorace/VirtualTrackball/releases) + +# More Info + +VirtualTrackball was made by Christopher Lathan Crockett in 2015 and is Licensed under the MIT License. It depends upon the following libraries: + +[ScalaFX](https://github.com/scalafx/scalafx) +[JNativeHook](https://github.com/kwhat/jnativehook) +[JavaGeom](https://github.com/dlegland/javaGeom) +[JCommander](https://github.com/cbeust/jcommander) diff --git a/src/main/java/Engine.scala b/src/main/java/Engine.scala index 08a5514..34f7fc6 100644 --- a/src/main/java/Engine.scala +++ b/src/main/java/Engine.scala @@ -10,7 +10,7 @@ import scalafx.scene.control.Alert.AlertType /** - * Created by Chris on 8/4/2015. This class actually handles + * Created by Chris on 8/4/2015. This class actually handles the trackball emulation */ class Engine(pollingRate: Option[Double], startupThreshold: Option[Double], giveupThreshold: Option[Double], drag: Option[Double]) extends Runnable{ @@ -91,4 +91,4 @@ class Engine(pollingRate: Option[Double], startupThreshold: Option[Double], give } } } -} \ No newline at end of file +}