(mut self, scale: Vec2)
| 41 | } |
| 42 | |
| 43 | pub fn scale(mut self, scale: Vec2) -> Self { |
| 44 | self.scale = scale; |
| 45 | self |
| 46 | } |
| 47 | |
| 48 | pub fn rotation(mut self, rotation: f32) -> Self { |
| 49 | self.rotation = rotation; |
nothing calls this directly
no outgoing calls
no test coverage detected