Jet  v1.3.3
Classes | Namespaces | Typedefs | Functions
matrix3x3.h File Reference
#include <jet/matrix.h>
#include <jet/vector3.h>
#include <array>
#include <limits>
#include "detail/matrix3x3-inl.h"

Go to the source code of this file.

Classes

class  jet::Matrix< T, 3, 3 >
 3-D matrix class. More...
 

Namespaces

 jet
 

Typedefs

template<typename T >
using jet::Matrix3x3 = Matrix< T, 3, 3 >
 Type alias for 3x3 matrix. More...
 
typedef Matrix3x3< float > jet::Matrix3x3F
 Float-type 3x3 matrix. More...
 
typedef Matrix3x3< double > jet::Matrix3x3D
 Double-type 3x3 matrix. More...
 

Functions

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