Mercator
|
A fixed sized array of objects. More...
#include <Matrix.h>
Public Member Functions | |
Matrix () | |
Constructor for the Matrix. | |
FloatType & | operator() (unsigned int col, unsigned int row) |
Accessor for modifying the array. | |
const FloatType & | operator() (unsigned int col, unsigned int row) const |
Accessor for the array. | |
FloatType & | operator[] (unsigned int idx) |
Accessor for accessing the array as one dimensional. | |
Private Attributes | |
FloatType | m_data [COLS *ROWS] |
Storage for the array of objects. | |
A fixed sized array of objects.
Mainly used to store the control points in a Segment.