source: GTP/trunk/Lib/Vis/Preprocessing/src/Matrix4x4.h @ 860

Revision 860, 3.5 KB checked in by mattausch, 18 years ago (diff)
Line 
1#ifndef __MATRIX4x4_H
2#define __MATRIX4x4_H
3
4#include <iostream>
5using namespace std;
6
7namespace GtpVisibilityPreprocessor {
8
9class Vector3;
10
11
12
13class Matrix4x4
14{
15public:
16  float x[4][4]; // first index is column [x], the second is row [y]
17
18  Matrix4x4() { }
19
20  // here xXY - 'X' is row, and 'Y' is column - classical mathematical notation
21  Matrix4x4(float x11, float x12, float x13, float x14,
22           float x21, float x22, float x23, float x24,
23           float x31, float x32, float x33, float x34,
24           float x41, float x42, float x43, float x44);
25
26  Matrix4x4(const Vector3 &a, const Vector3 &b, const Vector3 &c);
27
28
29  // Assignment operators
30  Matrix4x4& operator+= (const Matrix4x4 &A);   // add-to
31  Matrix4x4& operator-= (const Matrix4x4 &A);   // subtract-from
32  Matrix4x4& operator*= (const Matrix4x4 &A);   // multiply by matrix
33  Matrix4x4& operator*= (float A);              // scale by scalar
34
35  // Fundamental operations
36  int Invert();               // Invert the matrix .. returns 0 = regular
37  void Transpose();                             // Transpose the matrix
38
39  void
40  SetColumns(const Vector3 &a, const Vector3 &b, const Vector3 &c);
41
42  float Det3x3() const {
43    return (x[0][0]*x[1][1]*x[2][2] + \
44            x[1][0]*x[2][1]*x[0][2] + \
45            x[2][0]*x[0][1]*x[1][2] - \
46            x[2][0]*x[1][1]*x[0][2] - \
47            x[0][0]*x[2][1]*x[1][2] - \
48            x[1][0]*x[0][1]*x[2][2]);
49  }
50 
51
52  friend Matrix4x4 Invert(const Matrix4x4 &M);  // Invert a given matrix
53  friend Matrix4x4 Transpose(const Matrix4x4 &M);       // Transpose a given matrix
54
55  // Create various types of matrix.
56  friend Matrix4x4 IdentityMatrix();
57  friend Matrix4x4 ZeroMatrix();
58  friend Matrix4x4 TranslationMatrix(const Vector3 &Location);
59  friend Matrix4x4 RotationXMatrix(float Angle);
60  friend Matrix4x4 RotationYMatrix(float Angle);
61  friend Matrix4x4 RotationZMatrix(float Angle);
62  friend Matrix4x4 RotationYPRMatrix(float Yaw, float Pitch, float Roll);
63  // about axis 'axis' by angle 'Angle'
64  friend Matrix4x4 RotationAxisMatrix(const Vector3 &axis, float Angle);
65  // create the rotation matrix that rotates 'vecFrom' to 'vecTo'
66  friend Matrix4x4 RotationVectorsMatrix(const Vector3 &vecFrom,
67                                         const Vector3 &vecTo);
68 
69  friend Matrix4x4 ScaleMatrix(float X, float Y, float Z);
70  friend Matrix4x4 GenRotation(const Vector3 &x, const Vector3 &y,
71                             const Vector3 &z);
72  friend Matrix4x4 QuadricMatrix(float a, float b, float c, float d, float e,
73                              float f, float g, float h, float j, float k);
74  // returns matrix for transforming normal
75  friend Matrix4x4 NormalTransformMatrix(const Matrix4x4 &M);
76
77  friend Matrix4x4 MirrorX();
78  friend Matrix4x4 MirrorY();
79  friend Matrix4x4 MirrorZ();
80  friend Matrix4x4 RotationOnly(const Matrix4x4 &x);
81
82  // Binary operators
83  friend Matrix4x4 operator+ (const Matrix4x4 &A, const Matrix4x4 &B);
84  friend Matrix4x4 operator- (const Matrix4x4 &A, const Matrix4x4 &B);
85  friend Matrix4x4 operator* (const Matrix4x4 &A, float B);
86  friend Matrix4x4 operator* (const Matrix4x4 &A, const Matrix4x4 &B);
87
88  // friends returning Vector3
89  friend Vector3 operator*(const Matrix4x4 &M, const Vector3 &v);
90  friend Vector3 RotateOnly(const Matrix4x4 &M, const Vector3 &v);
91  friend Vector3 TransformNormal(const Matrix4x4 &M, const Vector3 &v);
92  friend Vector3 GetTranslation(const Matrix4x4 &M);
93
94  // Construct rotation description according VRML'97 specification
95  //  const CVector4D SFRotation(void) const;
96
97 
98
99  // Overloaded output operator.
100  friend ostream& operator<< (ostream &s, const Matrix4x4 &M);
101};
102
103}
104
105#endif
Note: See TracBrowser for help on using the repository browser.