HomeSort by relevance Sort by last modified time
    Searched full:mvelocity (Results 1 - 9 of 9) 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);
  /external/quake/quake/src/WinQuake/
client.h 174 vec3_t mvelocity[2]; // update by server, used for lean+bob member in struct:__anon10654
176 vec3_t velocity; // lerped between mvelocity[0] and [1]
cl_parse.cpp 528 VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
536 cl.mvelocity[0][i] = MSG_ReadChar()*16;
538 cl.mvelocity[0][i] = 0;
cl_main.cpp 461 cl.velocity[i] = cl.mvelocity[1][i] +
462 frac * (cl.mvelocity[0][i] - cl.mvelocity[1][i]);
  /dalvik/hit/samples/
android.hprof     [all...]

Completed in 1974 milliseconds