cgmath
cgmath copied to clipboard
Special method for combined invert + transpose for matrices
Sometimes it's necessary to calculate inverse + transpose matrix, to calculate proper normals matrix, for example.
There are (of course) methods to do this. But (i presume) it is not an optimal solution, because invert methods already contain transpose operation.
I suggest to add methods like invert_and_transpose, equivalent to invert but without transpose in last step.