| 20 | } |
| 21 | |
| 22 | Transform2D Flector2D::GetInverseTransformMatrix(void) const |
| 23 | { |
| 24 | return (Transform2D(1.0F - x * x * 2.0F, x * y * -2.0F, (x * z - y * w) * -2.0F, |
| 25 | x * y * -2.0F, 1.0F - y * y * 2.0F, (y * z + x * w) * -2.0F)); |
| 26 | } |
| 27 | |
| 28 | void Flector2D::GetTransformMatrices(Transform2D *M, Transform2D *Minv) const |
| 29 | { |
nothing calls this directly
no test coverage detected