Last active
October 25, 2018 10:14
-
-
Save kmagiera/95df57cf989fa60534c5081b56525b59 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const EPS = 1e-3; | |
const EMPTY_FRAMES_THRESHOLDS = 5; | |
function stopWhenNeeded(dt, position, velocity, clock) { | |
const ds = diff(position); | |
const noMovementFrames = new Value(0); | |
return cond( | |
lessThan(abs(ds), EPS), | |
[ | |
set(noMovementFrames, add(noMovementFrames, 1)), | |
cond( | |
greaterThan(noMovementFrames, EMPTY_FRAMES_THRESHOLDS), | |
stopClock(clock) | |
), | |
], | |
set(noMovementFrames, 0) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment