51 ConstRowView operator[](int row) const; |
52 ConstRowView operator[](int row) const; |
52 double& operator()(int row, int column); |
53 double& operator()(int row, int column); |
53 const double& operator()(int row, int column) const; |
54 const double& operator()(int row, int column) const; |
54 |
55 |
55 static const Matrix identity; |
56 static const Matrix identity; |
|
57 static Matrix fromRotationMatrix(const GLRotationMatrix& rotationMatrix); |
56 |
58 |
57 private: |
59 private: |
58 double m_values[9]; |
60 double m_values[9]; |
59 }; |
61 }; |
60 |
62 |