| 16 | } |
| 17 | |
| 18 | Vector2 Projection::projectVector(const Vector2 &vector) const { |
| 19 | return scale*vector; |
| 20 | } |
| 21 | |
| 22 | Vector2 Projection::unprojectVector(const Vector2 &vector) const { |
| 23 | return vector/scale; |
nothing calls this directly
no outgoing calls
no test coverage detected