Lines Matching full:acceleration
32 * Specifies parameters that govern pointer or wheel acceleration.
44 // The scaled speed at which acceleration begins to be applied.
46 // small precise motions that are performed without any acceleration.
52 // The scaled speed at which maximum acceleration is applied.
54 // the range of speeds over which the acceleration factor is interpolated.
55 // The wider the range, the smoother the acceleration.
61 // The acceleration factor.
66 // Default is 1.0 (no acceleration).
67 float acceleration; member
70 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) { in VelocityControlParameters()
74 float highThreshold, float acceleration) : in VelocityControlParameters()
76 highThreshold(highThreshold), acceleration(acceleration) { in VelocityControlParameters()
81 "acceleration=%0.3f\n", in dump()
82 scale, lowThreshold, highThreshold, acceleration); in dump()
87 * Implements mouse pointer and wheel speed control and acceleration.
95 * This has the effect of nullifying any acceleration. */
115 * Velocity control using a simple acceleration curve where the acceleration factor increases
138 /** Sets the curve to be used for acceleration. */