MathGeoLib
MathGeoLib copied to clipboard
Convert matrix representation from row major to column major.
Profiling shows that Matrix*vector operations can be implemented faster with SSE when the matrix is stored in column major order. The current order is row major.
Convert the representation from row major to column major to implement faster M*v path.