- opAdd
mat!(T, M, N) opAdd(mat!(T, M, N) val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opAddAssign
mat!(T, M, N) opAddAssign(mat!(T, M, N) val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opEquals
bool opEquals(mat!(T, M, N) mat)
Undocumented in source. Be warned that the author may not have intended to support it.
- opIndex
T opIndex(size_t m, size_t n)
Undocumented in source.
- opIndex
T opIndex(size_t i)
Undocumented in source.
- opIndexAssign
T opIndexAssign(T val, size_t m, size_t n)
Undocumented in source.
- opMul
mat!(T, M, N) opMul(mat!(T, M, N) val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opMul
mat!(T, M, N) opMul(T val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opMulAssign
mat!(T, M, N) opMulAssign(T val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opMulAssign
mat!(T, M, N) opMulAssign(mat!(T, M, N) val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opSliceAssign
T[] opSliceAssign(T val, size_t i1, size_t i2)
Undocumented in source.
- opSliceAssign
T[] opSliceAssign(T val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opSub
mat!(T, M, N) opSub(mat!(T, M, N) val)
Undocumented in source. Be warned that the author may not have intended to support it.
- opSubAssign
mat!(T, M, N) opSubAssign(mat!(T, M, N) val)
Undocumented in source. Be warned that the author may not have intended to support it.
- setIdentity
void setIdentity()
Undocumented in source. Be warned that the author may not have intended to support it.
A struct that represents a variable matrix. A struct that store's N*M array, allows to manipulate it. @since snapshot20180930