|
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator- (const Matrix< T, 3, 3 > &a) |
| | Returns a matrix with opposite sign. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator+ (const Matrix< T, 3, 3 > &a, const Matrix< T, 3, 3 > &b) |
| | Returns a + b (element-size). More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator+ (const Matrix< T, 3, 3 > &a, T b) |
| | Returns a + b', where every element of matrix b' is b. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator+ (T a, const Matrix< T, 3, 3 > &b) |
| | Returns a' + b, where every element of matrix a' is a. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator- (const Matrix< T, 3, 3 > &a, const Matrix< T, 3, 3 > &b) |
| | Returns a - b (element-size). More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator- (const Matrix< T, 3, 3 > &a, T b) |
| | Returns a - b', where every element of matrix b' is b. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator- (T a, const Matrix< T, 3, 3 > &b) |
| | Returns a' - b, where every element of matrix a' is a. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator* (const Matrix< T, 3, 3 > &a, T b) |
| | Returns a * b', where every element of matrix b' is b. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator* (T a, const Matrix< T, 3, 3 > &b) |
| | Returns a' * b, where every element of matrix a' is a. More...
|
| |
| template<typename T > |
| Vector3< T > | CubbyFlow::operator* (const Matrix< T, 3, 3 > &a, const Vector3< T > &b) |
| | Returns a * b. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator* (const Matrix< T, 3, 3 > &a, const Matrix< T, 3, 3 > &b) |
| | Returns a * b. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator/ (const Matrix< T, 3, 3 > &a, T b) |
| | Returns a' / b, where every element of matrix a' is a. More...
|
| |
| template<typename T > |
| Matrix< T, 3, 3 > | CubbyFlow::operator/ (T a, const Matrix< T, 3, 3 > &b) |
| | Returns a / b', where every element of matrix b' is b. More...
|
| |