Home | History | Annotate | Download | only in jni

Lines Matching defs:velocity

29 // Special constant to request the velocity of the active pointer.
54 struct Velocity {
61 Velocity mCalculatedVelocity[MAX_POINTERS];
101 Velocity& velocity = mCalculatedVelocity[index];
102 velocity.vx = vx;
103 velocity.vy = vy;
115 const Velocity& velocity = mCalculatedVelocity[index];
116 vx = velocity.vx;
117 vy = velocity.vy;