(&mut self, scale: f64, center: Point)
| 271 | } |
| 272 | |
| 273 | pub fn scale_about(&mut self, scale: f64, center: Point) { |
| 274 | self.update_local_transform(|t| t.then_scale_about(scale, center)); |
| 275 | } |
| 276 | |
| 277 | pub fn translate(&mut self, offset: Vec2) { |
| 278 | self.update_local_transform(|t| t.then_translate(offset)); |
nothing calls this directly
no test coverage detected