Matrix.makeIdentity

Makes the current matrix an identity matrix.

struct Matrix(type, int rows_, int cols_)
@safe pure nothrow
static if(rows == cols)
void
makeIdentity
()
if (
(rows_ > 0) &&
(cols_ > 0)
)

Meta