MathFu
An open source project by FPL.
 All Classes Namespaces Files Functions Variables Typedefs Friends Groups Pages
matrix.h File Reference

Matrix class and functions. More...

#include "mathfu/utilities.h"
#include "mathfu/vector.h"
#include <cmath>
#include <assert.h>
#include "mathfu/matrix_4x4.h"

Go to the source code of this file.

Detailed Description

Matrix class and functions.

Classes

class  mathfu::Matrix< T, rows, columns >
 Matrix stores a set of "rows" by "columns" elements of type T and provides functions that operate on the set of elements. More...
 
class  mathfu::Constants< float >
 Functions that return constants for float values. More...
 
class  mathfu::Constants< double >
 Functions that return constants for double values. More...
 

Namespaces

 mathfu
 Namespace for MathFu library.
 

Typedefs

typedef Matrix< float, 4, 3 > mathfu::AffineTransform
 A typedef representing a 4x3 float affine transformation. Since the last row ('w' row) of an affine transformation is fixed, this data type only includes the variable information for the transform.