Home | History | Annotate | Download | only in jni

Lines Matching defs:velocity

33 // Special constant to request the velocity of the active pointer.
57 struct Velocity {
64 Velocity mCalculatedVelocity[MAX_POINTERS];
105 Velocity& velocity = mCalculatedVelocity[index];
106 velocity.vx = vx;
107 velocity.vy = vy;
119 const Velocity& velocity = mCalculatedVelocity[index];
120 vx = velocity.vx;
121 vy = velocity.vy;