(&mut self, scale: f64)
| 263 | } |
| 264 | |
| 265 | pub fn scale(&mut self, scale: f64) { |
| 266 | self.update_local_transform(|t| t.then_scale(scale)); |
| 267 | } |
| 268 | |
| 269 | pub fn scale_non_uniform(&mut self, scale_x: f64, scale_y: f64) { |
| 270 | self.update_local_transform(|t| t.then_scale_non_uniform(scale_x, scale_y)); |
nothing calls this directly
no test coverage detected