NS/releases/3.1.3/source/util/Mat3.h
puzl 860617f419 made a copy
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@376 67975925-1194-0748-b3d5-c16f83f1a3a1
2006-01-15 21:48:23 +00:00

47 lines
818 B
C++

#ifndef UTIL_MAT3_H
#define UTIL_MAT3_H
/**
* 3x3 Matrix class.
*/
class Mat3
{
public:
/**
* Elements are uninitialized.
*/
Mat3();
/**
* Converts from Euler angles to a rotation matrix.
*/
Mat3(const float angles[3]);
float& operator()(int r, int c);
float operator()(int r, int c) const;
/**
* Extracts Euler angles from the matrix.
*/
void GetEulerAngles(float angles[3]) const;
void SetEulerAngles(const float angles[3]);
void TransformVector(float vector[3]) const;
/**
* If the columns of the matrix are orthonormal (as is the case with a
* rotation matrix), then the transpose is also the inverse.
*/
Mat3 Transpose() const;
private:
float element[3][3];
};
Mat3 operator*(const Mat3& m1, const Mat3& m2);
#endif