Searched defs:max_velocity (Results 1 - 1 of 1) sorted by last modified time

/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker_state.cc36 float max_velocity) {
37 DCHECK_GE(max_velocity, 0);
51 if (vx > max_velocity)
52 vx = max_velocity;
53 else if (vx < -max_velocity)
54 vx = -max_velocity;
56 if (vy > max_velocity)
57 vy = max_velocity;
58 else if (vy < -max_velocity)
59 vy = -max_velocity;
35 ComputeCurrentVelocity(int32_t units, float max_velocity) argument
[all...]

Completed in 83 milliseconds