Home | History | Annotate | Download | only in jni

Lines Matching defs:vy

57         float vx, vy;
87 float vx, vy;
88 mVelocityTracker.getVelocity(id, &vx, &vy);
91 vy = vy * units / 1000;
98 if (vy > maxVelocity) {
99 vy = maxVelocity;
100 } else if (vy < -maxVelocity) {
101 vy = -maxVelocity;
106 velocity.vy = vy;
115 float vx, vy;
120 vy = velocity.vy;
123 vy = 0;
130 *outVy = vy;
189 float vy;
190 state->getVelocity(id, NULL, &vy);
191 return vy;