MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / GetInverseTransformMatrix

Method GetInverseTransformMatrix

TSFlector2D.cpp:22–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22Transform2D 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
28void Flector2D::GetTransformMatrices(Transform2D *M, Transform2D *Minv) const
29{

Callers

nothing calls this directly

Calls 1

Transform2DClass · 0.85

Tested by

no test coverage detected