Home | History | Annotate | Download | only in gestures

Lines Matching defs:velocity_y

1111   float velocity_x = 0.f, velocity_y = 0.f;
1123 velocity_y = points_[i].YVelocity();
1125 sign_y = velocity_y < 0.f ? -1 : 1;
1138 velocity_y += points_[i].YVelocity();
1145 velocity_y = fabs(velocity_y / point_count_);
1148 if (velocity_y < min_velocity)
1157 velocity_y = 0.001f;
1159 float ratio = velocity_x > velocity_y ? velocity_x / velocity_y :
1160 velocity_y / velocity_x;
1164 if (velocity_x > velocity_y)