input_pipeline/gestures/
args.rs1pub(super) const SPURIOUS_TO_INTENTIONAL_MOTION_THRESHOLD_MM: f32 = 6.0 / 12.0;
6pub(super) const MAX_SPURIOUS_TO_INTENTIONAL_SCROLL_THRESHOLD_MM: f32 =
7 5.0 * SPURIOUS_TO_INTENTIONAL_MOTION_THRESHOLD_MM;
8pub(super) const TAP_TIMEOUT: zx::MonotonicDuration = zx::MonotonicDuration::from_millis(1200);
9pub(super) const MAX_SCROLL_DIRECTION_SKEW_DEGREES: f32 = 40.0;
10
11pub(super) const MIN_PALM_SIZE_MM: f32 = 5.8;
17
18pub(super) const SPURIOUS_TO_INTENTIONAL_MOTION_THRESHOLD_BUTTON_CHANGE_MM: f32 =
19 3.0 * SPURIOUS_TO_INTENTIONAL_MOTION_THRESHOLD_MM;
20pub(super) const BUTTON_CHANGE_STATE_TIMEOUT: zx::MonotonicDuration =
21 zx::MonotonicDuration::from_millis(100);