A class that represents a fixed size (3x3) matrix. More...
#include <xsmatrix3x3.h>
Public Attributes | |
XsReal XSCCONST | m_fixedData [9] |
Fixed storage for the elements of the matrix. More... | |
struct XsMatrix | m_matrix |
The underlying XsMatrix. More... | |
Related Functions | |
(Note that these are not member functions.) | |
void | XsMatrix3x3_assign (XsMatrix3x3 *thisPtr, const XsReal *src, XsSize srcStride) |
Init the XsMatrix3x3 and copy the data from src into the matrix if src is not null. More... | |
void | XsMatrix3x3_construct (XsMatrix3x3 *thisPtr) |
Init the XsMatrix3x3. More... | |
void | XsMatrix3x3_copy (XsMatrix *copy, XsMatrix3x3 const *src) |
Copy the contents of the XsMatrix3x3 to copy. More... | |
void | XsMatrix3x3_destruct (XsMatrix3x3 *thisPtr) |
Frees the Matrix3x3. More... | |
A class that represents a fixed size (3x3) matrix.
Definition at line 95 of file xsmatrix3x3.h.
Fixed storage for the elements of the matrix.
Definition at line 99 of file xsmatrix3x3.h.
struct XsMatrix XsMatrix3x3::m_matrix |
The underlying XsMatrix.
Definition at line 97 of file xsmatrix3x3.h.