I am trying to emulate Vector3.TransformNormal without the DirectX library.
Is anyone able to explain how this function works, to allow me to recreate the function?
So far I know the inputs and have seen the description of what it does, but I don’t know the calculations.
public static Vector3 TransformNormal(
Vector3 source,
Matrix sourceMatrix
)
This should do it (didn’t test)