-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmatrix.h
70 lines (47 loc) · 1.78 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
#ifndef MATRIX_H
#define MATRIX_H
#include <math.h>
#include <stdio.h>
typedef struct Matrix4Struct {
double element[4][4];
} Matrix4;
typedef struct Matrix3Struct {
double element[3][3];
} Matrix3;
typedef struct Vector4Struct {
double element[4];
} Vector4;
typedef struct Vector3Struct {
double element[3];
} Vector3;
/* initialize a translation matrix */
void matrix4_translate(Matrix4* matrix, double dx, double dy, double dz);
/* initialize a rotation matrix */
void matrix4_rotateXYZ(Matrix4* matrix, double rx, double ry, double rz);
void matrix4_rotateX(Matrix4* matrix, double ry);
void matrix4_rotateY(Matrix4* matrix, double rx);
void matrix4_rotateZ(Matrix4* matrix, double rz);
/* initialize an identity matrix */
void matrix4_identity(Matrix4* matrix);
/* initialize an identity matrix */
void matrix4_identity(Matrix4* matrix);
/* multiply matrix a by matrix b, result in matrix result */
void matrix4_multiply(Matrix4 *a, Matrix4 *b, Matrix4 *result);
void vector_multiply(Matrix4 *a, Vector4 *b, Vector4 *result);
/* add matrix b to matrix a, result in matrix result */
void matrix4_add(Matrix4 *a, Matrix4 *b, Matrix4 *result);
void vector3_subtract(Vector3 *A, Vector3 *B, Vector3 *result);
void vector4_subtract(Vector4 *A, Vector4 *B, Vector4 *result);
void vector3_cross(Vector3 *A, Vector3 *B, Vector3 *result);
double vector3_magnitude(Vector3 *A);
double vector4_magnitude(Vector4 *A);
/* print */
void matrix4_print(Matrix4 *matrix);
void matrix4_fprint(FILE* fp, Matrix4 *matrix);
void matrix3_print(Matrix3 *matrix);
void matrix3_fprint(FILE* fp, Matrix3 *matrix);
void vector3_print(Vector3 *vector);
void vector3_fprint(FILE *fp, Vector3 *vector);
void vector4_print(Vector4 *vector);
void vector4_fprint(FILE *fp, Vector4 *vector);
#endif /*defined MATRIX_H */