(&mut self, transform: Affine)
| 279 | } |
| 280 | |
| 281 | pub fn transform(&mut self, transform: Affine) { |
| 282 | self.update_local_transform(|t| t * transform); |
| 283 | } |
| 284 | |
| 285 | pub fn mouse_position(&self) -> Option<Point> { |
| 286 | self.actual_mouse_position() |
no test coverage detected