Matrix.inverse

Undocumented in source. Be warned that the author may not have intended to support it.
struct Matrix(T, int RowSize, int ColSize)
static if(RowSize == 3 && ColSize == 3 && (is(T == double) || is(T == float)))
inverse
()
if (
__traits(isArithmetic, T) &&
RowSize > 0
&&
ColSize > 0
)

Meta