forked from osresearch/papercraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv3.h
185 lines (151 loc) · 1.97 KB
/
v3.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
/** \file
* 3D point operations.
*/
#ifndef _papercraft_v3_h_
#define _papercraft_v3_h_
#include <math.h>
#define EPS 0.0001
#ifndef M_PI
#define M_PI 3.1415926535897932384
#endif
static inline float
sign(
const float x
)
{
if (x < 0)
return -1;
if (x > 0)
return +1;
return 0;
}
typedef struct
{
float p[3];
} v3_t;
static inline int
v3_eq(
const v3_t * v1,
const v3_t * v2
)
{
float dx = v1->p[0] - v2->p[0];
float dy = v1->p[1] - v2->p[1];
float dz = v1->p[2] - v2->p[2];
if (-EPS < dx && dx < EPS
&& -EPS < dy && dy < EPS
&& -EPS < dz && dz < EPS)
return 1;
return 0;
}
static inline double
v3_len(
const v3_t * const v0,
const v3_t * const v1
)
{
float dx = v0->p[0] - v1->p[0];
float dy = v0->p[1] - v1->p[1];
float dz = v0->p[2] - v1->p[2];
return sqrt(dx*dx + dy*dy + dz*dz);
}
static inline double
v3_mag(
const v3_t v0
)
{
float dx = v0.p[0];
float dy = v0.p[1];
float dz = v0.p[2];
return sqrt(dx*dx + dy*dy + dz*dz);
}
static inline v3_t
v3_add(
v3_t a,
v3_t b
)
{
v3_t c = { .p = {
a.p[0] + b.p[0],
a.p[1] + b.p[1],
a.p[2] + b.p[2],
} };
return c;
}
static inline v3_t
v3_sub(
v3_t a,
v3_t b
)
{
v3_t c = { .p = {
a.p[0] - b.p[0],
a.p[1] - b.p[1],
a.p[2] - b.p[2],
} };
return c;
}
static inline v3_t
v3_scale(
v3_t a,
float s
)
{
v3_t c = { .p = {
a.p[0]*s,
a.p[1]*s,
a.p[2]*s,
} };
return c;
}
static inline
v3_t
v3_norm(
const v3_t v
)
{
return v3_scale(v, 1/v3_mag(v));
}
static inline
v3_t
v3_mid(
const v3_t v0,
const v3_t v1,
const v3_t v2
)
{
return v3_norm(
v3_add(
v3_sub(v1, v0),
v3_sub(v2, v0)
)
);
}
static inline float
v3_dot(
v3_t a,
v3_t b
)
{
return a.p[0]*b.p[0] + a.p[1]*b.p[1] + a.p[2]*b.p[2];
}
static inline v3_t
v3_cross(
v3_t u,
v3_t v
)
{
float u1 = u.p[0];
float u2 = u.p[1];
float u3 = u.p[2];
float v1 = v.p[0];
float v2 = v.p[1];
float v3 = v.p[2];
v3_t c = { .p = {
u2*v3 - u3*v2,
u3*v1 - u1*v3,
u1*v2 - u2*v1,
}};
return c;
}
#endif