-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathMatrix.h
206 lines (167 loc) · 5.46 KB
/
Matrix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2013-1-6
* Update : 2019-1-17
* Author : scott.cgi
*/
#ifndef MATRIX_H
#define MATRIX_H
#include "Engine/Toolkit/Math/Math.h"
#include "Engine/Toolkit/Math/Vector.h"
/**
* (m0 m1 m2 ) x m3 w
* (m4 m5 m6 ) y m7 w
* (m8 m9 m10) z m11 w
* (m12 m13 m14) t m15 w
*/
typedef union
{
float m[16];
struct
{
float
m0, m1, m2, m3,
m4, m5, m6, m7,
m8, m9, m10, m11,
m12, m13, m14, m15;
};
}
Matrix4;
#define MATRIX4_IDENTITY \
{{ \
1.0f, 0.0f, 0.0f, 0.0f, \
0.0f, 1.0f, 0.0f, 0.0f, \
0.0f, 0.0f, 1.0f, 0.0f, \
0.0f, 0.0f, 0.0f, 1.0f, \
}}
#define MATRIX4_IDENTITY_ARRAY \
(Matrix4[1]) MATRIX4_IDENTITY
/**
* Control Matrix4.
*/
struct AMatrix
{
/**
* Multiply left and right matrix4 into outMatrix4.
*/
void (*MultiplyMM) (Matrix4* left, Matrix4* right, Matrix4* outMatrix4);
/**
* Multiply m2 and m3 into outM23.
* Multiply m1 and m23 into outM231.
*/
void (*MultiplyMMM) (Matrix4* m1, Matrix4* m2, Matrix4* m3, Matrix4* outM23, Matrix4* outM231);
/**
* Multiply matrix4 * vector4 into outVector4.
*/
void (*MultiplyMV4) (Matrix4* matrix4, float x, float y, float z, float w, Vector4* outVector4);
/**
* Multiply matrix4 * vector3 into outVector3.
*/
void (*MultiplyMV3) (Matrix4* matrix4, float x, float y, float z, Vector3* outVector3);
/**
* Multiply matrix4 * vector2 into outVector2.
*/
void (*MultiplyMV2) (Matrix4* matrix4, float x, float y, Vector2* outVector2);
/**
* Multiply matrix4 * x, return transformed x.
*/
float (*MultiplyMX) (Matrix4* matrix4, float x);
/**
* Multiply matrix4 * y, return transformed y.
*/
float (*MultiplyMY) (Matrix4* matrix4, float y);
/**
* Multiply matrix4 * z, return transformed z.
*/
float (*MultiplyMZ) (Matrix4* matrix4, float z);
/**
* Translate matrix4 by vector3.
*/
void (*Translate) (Matrix4* matrix4, float x, float y, float z);
/**
* Rotate matrix4 by angle and vector3.
*/
void (*Rotate) (Matrix4* matrix4, float angle, float x, float y, float z);
/**
* Rotate matrix4 by x axis with angle.
*/
void (*RotateX) (Matrix4* matrix4, float angle);
/**
* Rotate matrix4 by y axis with angle.
*/
void (*RotateY) (Matrix4* matrix4, float angle);
/**
* Rotate matrix4 by z axis with angle.
*/
void (*RotateZ) (Matrix4* matrix4, float angle);
/**
* Scale matrix4 by vector3.
*/
void (*Scale) (Matrix4* matrix4, float x, float y, float z);
/**
* Invert matrix4 into outInverse.
*/
void (*Inverse) (Matrix4* matrix4, Matrix4* outInverse);
/**
* Transpose matrix4 into outTranspose.
*/
void (*Transpose) (Matrix4* matrix4, Matrix4* outTranspose);
/**
* Invert transpose matrix4 into outInverseTranspose.
*/
void (*InverseTranspose)(Matrix4* matrix4, Matrix4* outInverseTranspose);
/**
* Computes an orthogonal projection matrix4.
*/
void (*Orthographic) (
float left,
float right,
float bottom,
float top,
float near,
float far,
Matrix4* outProjection
);
/**
* Define a projection matrix4 in terms of six clip planes.
*/
void (*Frustum) (
float left,
float right,
float bottom,
float top,
float near,
float far,
Matrix4* outProjection
);
/**
* Define a projection matrix in terms of a field of view angle an aspect ratio, and z clip planes.
* fovy : field of view angle for y axis.
* aspect: width / height.
*/
void (*Perspective) (float fovy, float aspect, float near, float far, Matrix4* outProjection);
/**
* Define a viewing transformation in terms of an eye point, a center of view, and an up vector.
*/
void (*LookAt) (
float eyeX, float eyeY, float eyeZ,
float centerX, float centerY, float centerZ,
float upX, float upY, float upZ,
Matrix4* outView
);
};
extern struct AMatrix AMatrix[1];
/**
* Construct Matrix composite literal.
*/
#define AMatrix_Make(...) \
(Matrix4[1]) {{__VA_ARGS__}}
#endif