Searched defs:maxVelocity (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboardView.java1465 public void computeCurrentVelocity(int units, float maxVelocity) { argument
1496 mXVelocity = accumX < 0.0f ? Math.max(accumX, -maxVelocity)
1497 : Math.min(accumX, maxVelocity);
1498 mYVelocity = accumY < 0.0f ? Math.max(accumY, -maxVelocity)
1499 : Math.min(accumY, maxVelocity);

Completed in 29 milliseconds