Changeset 5694 in orxonox.OLD for trunk/src/lib/math
- Timestamp:
- Nov 22, 2005, 12:55:02 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/math/matrix.h
r5692 r5694 22 22 this->m31 = m31; this->m32 = m32; this->m33 = m33; 23 23 }; 24 Matrix(const float m[9]) {}; 24 Matrix(const float m[3][3]) { 25 this->m11 = m[0][0]; this->m12 = m[0][1]; this->m13 = m[0][2]; 26 this->m21 = m[1][0]; this->m22 = m[1][1]; this->m23 = m[1][2]; 27 this->m31 = m[2][0]; this->m32 = m[2][1]; this->m33 = m[2][2]; 28 }; 25 29 26 30 Matrix operator+ (const Matrix& m) const {
Note: See TracChangeset
for help on using the changeset viewer.