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