This documentation is automatically generated from the openFrameworks source code using doxygen and refers to the most recent release, version 0.12.0.
ofMatrix3x3.h
Go to the documentation of this file.
ofMatrix3x3 operator*(float scalar)
Multiply a matrix with a scalar
Definition ofMatrix3x3.cpp:199
ofMatrix3x3 inverse(const ofMatrix3x3 &A)
Inverse of a 3x3 matrix.
Definition ofMatrix3x3.cpp:129
void operator-=(const ofMatrix3x3 &B)
Subtract matrix from existing matrix.
Definition ofMatrix3x3.cpp:183
ofMatrix3x3 operator-(const ofMatrix3x3 &B)
Subtract two matrices.
Definition ofMatrix3x3.cpp:169
void operator*=(const ofMatrix3x3 &B)
Multiply a matrix by a matrix this = this*B (in that order)
Definition ofMatrix3x3.cpp:214
float determinant() const
Find the determinant of the matrix.
Definition ofMatrix3x3.cpp:86
ofMatrix3x3 entrywiseTimes(const ofMatrix3x3 &A)
Multiply a matrix by a matrix entry by entry (i.e. a*a, b*b, c*c...)
Definition ofMatrix3x3.cpp:218
friend std::ostream & operator<<(std::ostream &os, const ofMatrix3x3 &M)
Definition ofMatrix3x3.cpp:304
friend std::istream & operator>>(std::istream &is, ofMatrix3x3 &M)
Definition ofMatrix3x3.cpp:323
ofMatrix3x3 operator/(float scalar)
Divide a matrix through a scalar
Definition ofMatrix3x3.cpp:264
ofMatrix3x3 operator+(const ofMatrix3x3 &B)
Add two matrices.
Definition ofMatrix3x3.cpp:140
void operator+=(const ofMatrix3x3 &B)
Add matrix to existing matrix.
Definition ofMatrix3x3.cpp:154