Changeset 5692 in orxonox.OLD for trunk/src/lib/math
- Timestamp:
- Nov 22, 2005, 12:37:29 AM (19 years ago)
- Location:
- trunk/src/lib/math
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/math/matrix.h
r5675 r5692 12 12 13 13 public: 14 Matrix() : m11(0), m12(0), m13(0), m21(0), m22(0), m23(0), m31(0), m32(0), m33(0) { }; 15 14 16 Matrix ( float m11, float m12, float m13, 15 17 float m21, float m22, float m23, … … 20 22 this->m31 = m31; this->m32 = m32; this->m33 = m33; 21 23 }; 24 Matrix(const float m[9]) {}; 22 25 23 26 Matrix operator+ (const Matrix& m) const { -
trunk/src/lib/math/vector.h
r5688 r5692 44 44 */ 45 45 class Vector { 46 47 48 46 public: 49 47 Vector (float x, float y, float z) : x(x), y(y), z(z) {} //!< assignment constructor
Note: See TracChangeset
for help on using the changeset viewer.