Matrix4x4-Impl.h File Reference
#include <cassert>Go to the source code of this file.
Namespaces | |
| CubbyFlow | |
Functions | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator- (const Matrix< T, 4, 4 > &a) |
| Returns a matrix with opposite sign. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator+ (const Matrix< T, 4, 4 > &a, const Matrix< T, 4, 4 > &b) |
| Returns a + b (element-size). More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator+ (const Matrix< T, 4, 4 > &a, T b) |
| Returns a + b', where every element of matrix b' is b. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator+ (T a, const Matrix< T, 4, 4 > &b) |
| Returns a' + b, where every element of matrix a' is a. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator- (const Matrix< T, 4, 4 > &a, const Matrix< T, 4, 4 > &b) |
| Returns a - b (element-size). More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator- (const Matrix< T, 4, 4 > &a, T b) |
| Returns a - b', where every element of matrix b' is b. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator- (T a, const Matrix< T, 4, 4 > &b) |
| Returns a' - b, where every element of matrix a' is a. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator* (const Matrix< T, 4, 4 > &a, T b) |
| Returns a * b', where every element of matrix b' is b. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator* (T a, const Matrix< T, 4, 4 > &b) |
| Returns a' * b, where every element of matrix a' is a. More... | |
| template<typename T > | |
| Vector< T, 3 > | CubbyFlow::operator* (const Matrix< T, 4, 4 > &a, const Vector< T, 3 > &b) |
| template<typename T > | |
| Vector< T, 4 > | CubbyFlow::operator* (const Matrix< T, 4, 4 > &a, const Vector< T, 4 > &b) |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator* (const Matrix< T, 4, 4 > &a, const Matrix< T, 4, 4 > &b) |
| Returns a * b. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator/ (const Matrix< T, 4, 4 > &a, T b) |
| Returns a' / b, where every element of matrix a' is a. More... | |
| template<typename T > | |
| Matrix< T, 4, 4 > | CubbyFlow::operator/ (const T &a, const Matrix< T, 4, 4 > &b) |
| Returns a / b', where every element of matrix b' is b. More... | |
1.8.14