-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVecMath.cpp
385 lines (274 loc) · 6.75 KB
/
VecMath.cpp
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
//
// VecMath.cpp
// GL_Project4
//
// Created by Justin Hust on 4/19/13.
// Copyright (c) 2013 __MyCompanyName__. All rights reserved.
//
/*
* data.cpp
* --------
* Contains routines to help manage the data for the Midpoint Subdivision.
* Starter code for Project 3.
*
* Group Members: <FILL IN>
*/
#ifdef _WIN32
#include <windows.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <assert.h>
#include "common.h"
#include "VecMath.h"
// *******************************************************
// return a random float in the range 0.0f to 1.0f
GLfloat maxf(GLfloat num1, GLfloat num2) {
if(num1 < num2)
return num2;
else
return num1;
}
// ****************************
// default ctor
Vec3::Vec3(void) {
x = 0;
y = 0;
z = 0;
}
// ****************************
Vec3::Vec3(GLfloat x_, GLfloat y_, GLfloat z_) {
x = x_;
y = y_;
z = z_;
}
// ****************************
Vec3::Vec3(Vec3 *v) {
x = v->x;
y = v->y;
z = v->z;
}
// ****************************
void Vec3::Clear(void) {
x = 0.0f;
y = 0.0f;
z = 0.0f;
}
// ****************************
Vec3 Vec3::ClampTo1(void) {
Vec3 vRet;
vRet.x = this->x;
vRet.y = this->y;
vRet.z = this->z;
if(vRet.x > 1.0f) vRet.x = 1.0f;
if(vRet.y > 1.0f) vRet.y = 1.0f;
if(vRet.z > 1.0f) vRet.z = 1.0f;
return vRet;
}
// ****************************
void Vec3::Set(GLfloat x_, GLfloat y_, GLfloat z_) {
x = x_;
y = y_;
z = z_;
}
// ****************************
Vec3 Vec3::Add(GLfloat x_, GLfloat y_, GLfloat z_) const {
Vec3 vRet;
vRet.x = this->x + x_;
vRet.y = this->y + y_;
vRet.z = this->z + z_;
return vRet;
}
// ****************************
Vec3 Vec3::Add(const Vec3 v) const {
Vec3 vRet;
vRet.x = this->x + v.x;
vRet.y = this->y + v.y;
vRet.z = this->z + v.z;
return vRet;
}
// ****************************
Vec3 Vec3::Add(const Vec3 *v) const {
Vec3 vRet;
vRet.x = x + v->x;
vRet.y = y + v->y;
vRet.z = z + v->z;
return vRet;
}
// ****************************
Vec3 Vec3::Sub(const Vec3 v) const {
Vec3 vRet;
vRet.x = x - v.x;
vRet.y = y - v.y;
vRet.z = z - v.z;
return vRet;
}
// ****************************
Vec3 Vec3::Sub(const Vec3 *v) const {
Vec3 vRet;
vRet.x = x - v->x;
vRet.y = y - v->y;
vRet.z = z - v->z;
return vRet;
}
// ****************************
Vec3 Vec3::MultBy(GLfloat f) const {
Vec3 vRet;
vRet.x = x * f;
vRet.y = y * f;
vRet.z = z * f;
return vRet;
}
// ****************************
Vec3 Vec3::DivideBy(GLfloat f) const {
Vec3 vRet;
vRet.x = x / f;
vRet.y = y / f;
vRet.z = z / f;
return vRet;
}
// ****************************
GLfloat Vec3::Length(void) const {
return sqrt(x*x + y*y + z*z);
}
// ****************************
void Vec3::Normalize(void) {
GLfloat fLength = this->Length();
x /= fLength;
y /= fLength;
z /= fLength;
}
// ****************************
Vec3 Vec3::GetNormalized(void) {
Vec3 vRet(x,y,z);
vRet.Normalize();
return vRet;
}
// ****************************
Vec3 Vec3::RotateYDeg(float fDeg) const {
float fRad = fDeg * PI / 180;
Vec3 vNew;
vNew.x = x * cos(fRad) + z * sin(fRad);
vNew.y = y;
vNew.z = -x * sin(fRad) + z * cos(fRad);
return vNew;
}
// ****************************
GLfloat Vec3::r(void) {
return x;
}
// ****************************
GLfloat Vec3::g(void) {
return y;
}
// ****************************
GLfloat Vec3::b(void) {
return z;
}
// ****************************
Vec3 vec3_direction(const Vec3 *p, const Vec3 *q) {
return(q->Sub(p));
}
// ****************************
GLfloat vec3_dot(const Vec3 *v1, const Vec3 *v2) {
return( v1->x * v2->x +
v1->y * v2->y +
v1->z * v2->z );
}
// ****************************
Vec3 vec3_cross(const Vec3 *v, const Vec3 *w) {
Vec3 n;
n.x = (v->y * w->z) - (w->y * v->z);
n.y = (w->x * v->z) - (v->x * w->z);
n.z = (v->x * w->y) - (w->x * v->y);
return n;
}
// ****************************
Vec3 vec3_normal(const Vec3 *v1, const Vec3 *v2, const Vec3 *v3, bool bNormalize) {
// build 2 vectors to find a normal.
Vec3 v(v1->x - v2->x, v1->y - v2->y, v1->z - v2->z);
Vec3 w(v3->x - v2->x, v3->y - v2->y, v3->z - v2->z);
// calc cross product of v,w
Vec3 n = vec3_cross(&v, &w);
if(bNormalize)
n.Normalize();
return n;
}
// ****************************
Vec3 vec3_normal(const Vec3 v1, const Vec3 v2, const Vec3 v3, bool bNormalize) {
// build 2 vectors to find a normal.
Vec3 v(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z);
Vec3 w(v3.x - v2.x, v3.y - v2.y, v3.z - v2.z);
// calc cross product of v,w
Vec3 n = vec3_cross(&v, &w);
if(bNormalize)
n.Normalize();
return n;
}
// ****************************
Vec3 vec3_avg(const Vec3 *v1, const Vec3 *v2) {
return (v1->Add(v2)).DivideBy(2);
}
// ****************************
Vec3 vec3_avg(const Vec3 *v1, const Vec3 *v2, const Vec3 *v3, const Vec3 *v4) {
Vec3 vRet;
vRet = v1->Add(v2);
vRet = vRet.Add(v3);
vRet = vRet.Add(v4);
vRet = vRet.DivideBy(4);
return vRet;
}
// ****************************
// reflection vector
// 2(NdotL)*N - L
Vec3 vec3_reflect(const Vec3 *v1, const Vec3 *norm) {
GLfloat dot = maxf(0, vec3_dot(v1, norm));
Vec3 vReflect;
vReflect = norm->MultBy(2.0f * dot);
vReflect = vReflect.Sub(v1);
vReflect.Normalize();
return vReflect;
}
// ****************************
GLfloat vec3_distance(const Vec3 *p, const Vec3 *q) {
Vec3 v = q->Sub(p);
return v.Length();
}
// ****************************
Vec3 vec3_get_spherical_uv(const Vec3 *vCenter, const Vec3 *vPointOnSphere) {
Vec3 vToPoint = vPointOnSphere->Sub(vCenter);
vToPoint.Normalize();
Vec3 vYAxis = Vec3(0.0f, 1.0f, 0.0f);
GLdouble arctan_value = atan2(vToPoint.z, vToPoint.x);
if(arctan_value < 0.0f)
arctan_value += 2.0f * PI;
GLfloat u = (arctan_value / (2.0f * PI));
GLfloat phi = acosf( -1.0f * vec3_dot(&vYAxis, &vToPoint) );
GLfloat v = phi / (GLfloat) PI;
return Vec3(u, v, 0.0f);
}
// ************************************************************
bool points_same_side_of_ab(Vec3 *p1, Vec3 *p2, Vec3 *a, Vec3 *b) {
Vec3 BsubA = b->Sub(a);
BsubA.Normalize();
Vec3 P1subA = p1->Sub(a);
P1subA.Normalize();
Vec3 P2subA = p2->Sub(a);
P2subA.Normalize();
Vec3 cp1 = vec3_cross(&BsubA, &P1subA);
Vec3 cp2 = vec3_cross(&BsubA, &P2subA);
if(vec3_dot(&cp1, &cp2) >= 0)
return true;
else
return false;
}
// ****************************
RTColor color_modulate(const RTColor *c1, const RTColor *c2) {
RTColor colorRet;
colorRet.x = c1->x * c2->x;
colorRet.y = c1->y * c2->y;
colorRet.z = c1->z * c2->z;
return colorRet;
}