Matrix4x4.h File Reference
#include <Core/Matrix/Matrix3x3.h>
#include <Core/Vector/Vector4.h>
#include <array>
#include <limits>
#include <Core/Matrix/Matrix4x4-Impl.h>

Go to the source code of this file.

Classes

class  CubbyFlow::Matrix< T, 4, 4 >
 4-D matrix class. More...
 

Namespaces

 CubbyFlow
 

Typedefs

template<typename T >
using CubbyFlow::Matrix4x4 = Matrix< T, 4, 4 >
 Type alias for 4x4 matrix. More...
 
using CubbyFlow::Matrix4x4F = Matrix4x4< float >
 Float-type 4x4 matrix. More...
 
using CubbyFlow::Matrix4x4D = Matrix4x4< double >
 Double-type 4x4 matrix. More...
 

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 >
Vector3< T > CubbyFlow::operator* (const Matrix< T, 4, 4 > &a, const Vector3< T > &b)
 Returns a * b. More...
 
template<typename T >
Vector4< T > CubbyFlow::operator* (const Matrix< T, 4, 4 > &a, const Vector4< T > &b)
 Returns a * b. 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. 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...