HomeSort by relevance Sort by last modified time
    Searched refs:mVelocity (Results 1 - 17 of 17) 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);
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
DampedSpring.java 33 private float mVelocity = 0f;
114 float force = delta - 2.0f * mVelocity;
116 mVelocity += force * dts;
117 mValue += mVelocity * dts;
132 boolean hasVelocity = Math.abs(mVelocity) >= EPSILON;
143 mVelocity = 0.0f;
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
VerticalPullDetector.java 100 private float mVelocity;
159 mVelocity = 0;
223 mDisplacementY, mVelocity));
226 return mListener.onDrag(mDisplacementY - mSubtractDisplacement, mVelocity);
234 mDisplacementY, mVelocity));
236 mListener.onDragEnd(mVelocity, Math.abs(mVelocity) > RELEASE_VELOCITY_PX_MS);
253 if (Math.abs(mVelocity) < 0.001f) {
254 mVelocity = velocity;
257 mVelocity = interpolate(mVelocity, velocity, alpha)
    [all...]
  /cts/tests/openglperf2/jni/reference/scene/flocking/
Boid.cpp 46 alignment.add(b->mVelocity);
76 desired.sub(mVelocity);
82 mVelocity.add(mAcceleration);
83 mVelocity.limit(MAX_SPEED);
84 mPosition.add(mVelocity);
Boid.h 36 Vector2D mVelocity;
FlockingScene.cpp 157 Vector2D* vel = &(b->mVelocity);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 550 private int mVelocity;
693 mVelocity = 0;
720 mVelocity = 0;
743 mVelocity = -delta; // only sign is used
751 mCurrVelocity = mVelocity = velocity;
810 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
Scroller.java 58 private float mVelocity;
204 return mVelocity - mDeceleration * timePassed() / 2000.0f;
393 mVelocity = velocity;
  /frameworks/base/core/java/android/widget/
OverScroller.java 549 private int mVelocity;
689 mVelocity = 0;
716 mVelocity = 0;
739 mVelocity = -delta; // only sign is used
747 mCurrVelocity = mVelocity = velocity;
808 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
Scroller.java 87 private float mVelocity;
256 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
446 mVelocity = velocity;
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 324 private PointF mVelocity;
335 mVelocity = vel;
357 mFrom.left += (mVelocity.x * (curTime - mPrevTime) / 1000f);
358 mFrom.top += (mVelocity.y * (curTime - mPrevTime) / 1000f);
364 mVelocity.x *= mFriction;
365 mVelocity.y *= mFriction;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FlingAnimationUtils.java 278 private float mVelocity;
283 mVelocity = velocity;
290 return time * mVelocity / mDiff;
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 129 private final VelocityTracker mVelocity;
177 mVelocity = VelocityTracker.obtain();
543 mVelocity.clear();
575 mVelocity.addMovement(event);
576 mVelocity.computeCurrentVelocity(1);
607 ps.mXVelocity = mVelocity.getXVelocity(id);
608 ps.mYVelocity = mVelocity.getYVelocity(id);
609 mVelocity.getEstimator(id, ps.mEstimator);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 55 private float mVelocity;
234 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
430 mVelocity = velocity;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java     [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-ios.jar 

Completed in 490 milliseconds