Hi,
I am fairly new to XNA and stuck with a problem.
I have a 2x3 matrix and want to calculate its inverse. Currently, I am storing it in a float [3,2] and need to calculate its inverse. I was wondering if I can use Matrix built in XNA to do this stuff as I will be calling this inverse calculation very frequently.
If not, can someone ...