Home | History | Annotate | Download | only in launcher3

Lines Matching defs:mVelocity

2624         private PointF mVelocity;
2634 mVelocity = vel;
2645 mFrom.left += (mVelocity.x * (curTime - mPrevTime) / 1000f);
2646 mFrom.top += (mVelocity.y * (curTime - mPrevTime) / 1000f);
2652 mVelocity.x *= mFriction;
2653 mVelocity.y *= mFriction;