(&self, multiplier: f32)
| 42 | |
| 43 | impl vector::Scale for Vector2 { |
| 44 | fn scale(&self, multiplier: f32) -> Self { |
| 45 | Self { |
| 46 | x: self.x * multiplier, |
| 47 | y: self.y * multiplier, |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | impl vector::Negate for Vector2 { |
no outgoing calls
no test coverage detected