| 14 | |
| 15 | |
| 16 | Transform2D Flector2D::GetTransformMatrix(void) const |
| 17 | { |
| 18 | return (Transform2D(1.0F - x * x * 2.0F, x * y * -2.0F, (x * z + y * w) * -2.0F, |
| 19 | x * y * -2.0F, 1.0F - y * y * 2.0F, (y * z - x * w) * -2.0F)); |
| 20 | } |
| 21 | |
| 22 | Transform2D Flector2D::GetInverseTransformMatrix(void) const |
| 23 | { |
nothing calls this directly
no test coverage detected