(&self, index: usize)
| 248 | } |
| 249 | } |
| 250 | pub fn get_touch_x(&self, index: usize) -> f64 { |
| 251 | if index < MAX_TOUCH_POINTS { self.touch_points[index].x } else { 0.0 } |
| 252 | } |
| 253 | pub fn get_touch_y(&self, index: usize) -> f64 { |
| 254 | if index < MAX_TOUCH_POINTS { self.touch_points[index].y } else { 0.0 } |
| 255 | } |
no outgoing calls
no test coverage detected