| 24 | } |
| 25 | |
| 26 | double Projection::projectX(double x) const { |
| 27 | return scale.x*(x+translate.x); |
| 28 | } |
| 29 | |
| 30 | double Projection::projectY(double y) const { |
| 31 | return scale.y*(y+translate.y); |
nothing calls this directly
no outgoing calls
no test coverage detected