Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
chaorace committed Aug 5, 2015
2 parents 592589d + 66737c8 commit d48b882
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions src/main/java/Engine.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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{

Expand Down Expand Up @@ -91,4 +91,4 @@ class Engine(pollingRate: Option[Double], startupThreshold: Option[Double], give
}
}
}
}
}

0 comments on commit d48b882

Please sign in to comment.