(&self)
| 254 | if index < MAX_TOUCH_POINTS { self.touch_points[index].y } else { 0.0 } |
| 255 | } |
| 256 | pub fn get_touch_count(&self) -> usize { self.touch_count } |
| 257 | |
| 258 | // Digital Crown (watchOS) |
| 259 | pub fn accumulate_crown_rotation(&mut self, delta: f64) { self.crown_rotation += delta; } |
no outgoing calls
no test coverage detected