-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeometry.cpp
102 lines (92 loc) · 3.14 KB
/
Geometry.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
/******************************************************************************
* @file Geometry.cpp
* @author Andrés Gavín Murillo, 716358
* @author Abel Naya Forcano, 544125
* @date Enero 2020
* @coms Informática Gráfica - Trabajo 4: Path tracer
******************************************************************************/
#include "Geometry.hpp"
Geometry Sphere(const HCoord ¢er, float radius) {
return {
.type=SPHERE,
.data={.sphere={
.center=center,
.radius=radius,
}},
};
}
Geometry Plane(const HCoord &normal, float dist) {
return {
.type = PLANE,
.data={.plane={
.normal = norm(normal),
.dist = dist,
}},
};
}
Geometry Triangle(const HCoord &point1, const HCoord &point2, const HCoord &point3) {
HCoord dirX = point2 - point1;
HCoord dirY = point3 - point1;
HCoord normal = norm(cross(dirX, dirY));
float dist = dot(P_ZERO - point1, normal);
return Geometry{
.type = TRIANGLE,
.data = {.triangle = {
.plane = {
.normal = normal,
.dist = dist,
},
.point = point1,
.dirX = dirX,
.dirY = dirY,
}},
};
}
Geometry Circle(const HCoord ¢er, const HCoord &axisX, const HCoord &axisY) {
HCoord normal = norm(cross(axisX, axisY));
float dist = dot(P_ZERO - center, normal);
return Geometry{
.type = CIRCLE,
.data = {.circle = {
.plane = {
.normal = normal,
.dist = dist,
},
.center = center,
.axisX = axisX,
.axisY = axisY,
}},
};
}
Geometry Cuadric(float A, float B, float C, float D, float E, float F, float G, float H, float I, float J) {
return Geometry{
.type = CUADRIC,
.data = {.cuadric = {
A, B, C, D, E, F, G, H, I, J
}},
};
}
HCoord normal(const Geometry &geometry, const HCoord &position) {
switch (geometry.type) {
case SPHERE: {
return norm(position - geometry.data.sphere.center);
}
case PLANE: {
return geometry.data.plane.normal;
}
case TRIANGLE: {
return geometry.data.triangle.plane.normal;
}
case CIRCLE: {
return geometry.data.circle.plane.normal;
}
case CUADRIC: {
GEOMETRY_CUADRIC data = geometry.data.cuadric;
//http://skuld.bmsc.washington.edu/people/merritt/graphics/quadrics.html
float xn = 2*data.A*position.x() + data.D*position.y() + data.E*position.z() + data.G;
float yn = 2*data.B*position.y() + data.D*position.x() + data.F*position.z() + data.H;
float zn = 2*data.C*position.z() + data.E*position.x() + data.F*position.y() + data.I;
return norm(hVector(xn, yn, zn));
}
}
}