Home | History | Annotate | Download | only in jni

Lines Matching refs:vx

57         float vx, vy;
87 float vx, vy;
88 mVelocityTracker.getVelocity(id, &vx, &vy);
90 vx = vx * units / 1000;
93 if (vx > maxVelocity) {
94 vx = maxVelocity;
95 } else if (vx < -maxVelocity) {
96 vx = -maxVelocity;
105 velocity.vx = vx;
115 float vx, vy;
119 vx = velocity.vx;
122 vx = 0;
127 *outVx = vx;
181 float vx;
182 state->getVelocity(id, &vx, NULL);
183 return vx;