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

Method GetTransformMatrix

TSFlector2D.cpp:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14
15
16Transform2D 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
22Transform2D Flector2D::GetInverseTransformMatrix(void) const
23{

Callers

nothing calls this directly

Calls 1

Transform2DClass · 0.85

Tested by

no test coverage detected