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

/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidInput.java514 public boolean onScaleBegin(ScaleGestureDetector scaleGestureDetector) { argument
516 touch.set(Type.SCALE_START, scaleGestureDetector.getFocusX(), scaleGestureDetector.getFocusY(), 0f, 0f);
518 touch.setTime(scaleGestureDetector.getEventTime());
519 touch.setScaleSpan(scaleGestureDetector.getCurrentSpan());
520 touch.setScaleFactor(scaleGestureDetector.getScaleFactor());
527 public boolean onScale(ScaleGestureDetector scaleGestureDetector) { argument
529 touch.set(Type.SCALE_MOVE, scaleGestureDetector.getFocusX(), this.getHeight() - scaleGestureDetector.getFocusY(), 0f, 0f);
531 touch.setTime(scaleGestureDetector
540 onScaleEnd(ScaleGestureDetector scaleGestureDetector) argument
[all...]

Completed in 6225 milliseconds