| 73 | } |
| 74 | |
| 75 | Vector2f Transform::transformPoint( float x, float y ) const { |
| 76 | return Vector2f( mMatrix[0] * x + mMatrix[4] * y + mMatrix[12], |
| 77 | mMatrix[1] * x + mMatrix[5] * y + mMatrix[13] ); |
| 78 | } |
| 79 | |
| 80 | Vector2f Transform::transformPoint( const Vector2f& point ) const { |
| 81 | return transformPoint( point.x, point.y ); |
no outgoing calls
no test coverage detected