OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs: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/com/android/internal/widget/
PointerLocationView.java
113
private final VelocityTracker
mVelocity
;
156
mVelocity
= VelocityTracker.obtain();
508
mVelocity
.clear();
537
mVelocity
.addMovement(event);
538
mVelocity
.computeCurrentVelocity(1);
571
ps.mXVelocity =
mVelocity
.getXVelocity(id);
572
ps.mYVelocity =
mVelocity
.getYVelocity(id);
573
mVelocity
.getEstimator(id, ps.mEstimator);
/frameworks/base/core/java/android/widget/
Scroller.java
59
private float
mVelocity
;
205
return
mVelocity
- mDeceleration * timePassed() / 2000.0f;
394
mVelocity
= velocity;
OverScroller.java
553
private int
mVelocity
;
696
mVelocity
= 0;
723
mVelocity
= 0;
746
mVelocity
= -delta; // only sign is used
754
mCurrVelocity =
mVelocity
= velocity;
813
mVelocity
= (int) (- mDeceleration * totalDuration);
[
all
...]
Completed in 432 milliseconds