HomeSort by relevance Sort by last modified time
    Searched refs:mVelocity (Results 1 - 5 of 5) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
OrbitalMagnetComponent.java 27 private Vector2 mVelocity;
36 mVelocity = new Vector2();
46 mVelocity.zero();
87 mVelocity.set(gravityVector);
88 mVelocity.multiply(timeDelta);
89 targetVelocity.subtract(mVelocity);
104 mVelocity.set(mDelta);
105 mVelocity.normalize();
107 // mVelocity is now the direction to push the player
109 mVelocity.multiply(mStrength)
    [all...]
GameObject.java 31 private Vector2 mVelocity;
83 mVelocity = new Vector2();
100 mVelocity.zero();
169 return mVelocity;
173 mVelocity.set(velocity);
  /frameworks/base/core/java/android/widget/
OverScroller.java 549 private int mVelocity;
692 mVelocity = 0;
719 mVelocity = 0;
742 mVelocity = -delta; // only sign is used
750 mCurrVelocity = mVelocity = velocity;
809 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
Scroller.java 59 private float mVelocity;
205 return mVelocity - mDeceleration * timePassed() / 2000.0f;
394 mVelocity = velocity;
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 101 private final VelocityTracker mVelocity;
141 mVelocity = VelocityTracker.obtain();
481 mVelocity.clear();
507 mVelocity.addMovement(event);
508 mVelocity.computeCurrentVelocity(1);
537 ps.mXVelocity = mVelocity.getXVelocity(id);
538 ps.mYVelocity = mVelocity.getYVelocity(id);
539 mVelocity.getEstimator(id, -1, -1, ps.mEstimator);

Completed in 197 milliseconds