Tracer
All Classes
vec3.h
1 #ifndef vec3_h //if the vector has not been defined yet then it will define otherwise will cause error when used in multiple classes
2 
3 #define vec3_h
4 #include <math.h>
5 #include <stdlib.h>
6 #include <iostream>
7 
8 //template<typename T>//allows vector to be compiled at compile time with any data type, which is determined when called
9 //__host__ __device__ keywords allows execution on GPU and CPU
10 class vec3 {//3d vector class
11 public:
12  float x,y,z;//initialize
13  __host__ __device__ vec3(float a, float b, float c) {
14  x=a;
15  y=b;
16  z=c;
17  }//Constructor for class sets x,y,z could also be written as Vec3(T a, T b, T c) : x(a), y(b), z(c) {}
18  __host__ __device__ vec3 () {}//another contrustor lets us define a vector to a vector
19 
20  __host__ __device__ vec3 operator +(const vec3 &v) const {//first const avoids copying second const is because it is not going to modify the class but rather create a new vector
21  return vec3(x+v.x,y+v.y,z+v.z);
22  }//Operator overloading, redifines the + o vectors such that it add vectors properly and returns a vector
23  __host__ __device__ vec3 operator -(const vec3 &v) const {//& means its referencing
24  return vec3(x-v.x,y-v.y,z-v.z);
25  }
26  __host__ __device__ vec3 operator *(const float &s) const {
27  return vec3(x*s,y*s,z*s);
28  }
29  __host__ __device__ vec3 operator *(const vec3 &v) const {
30  return vec3(x*v.x,y*v.y,z*v.z);
31  }
32  __host__ __device__ vec3 operator /(const float &s) const {
33  return vec3(x/s,y/s,z/s);
34  }
35  __host__ __device__ vec3 operator /(const vec3 &v) const {
36  return vec3(x/v.x,y/v.y,z/v.z);
37  }
38  __host__ __device__ vec3 operator -() const {
39  return vec3(-x,-y,-z);
40  }
41 
42  __host__ __device__ float dot(const vec3 &v) const{
43  return x*v.x+y*v.y+z*v.z;
44  }
45  __host__ __device__ vec3 cross(const vec3 &v) const{
46  return vec3(y*v.z-z*v.y,z*v.x-x*v.z,x*v.y-y*v.x);
47  }
48  __host__ __device__ float magnitude() const{
49  return sqrt(dot(*this));//reference itself
50  }
51  __host__ __device__ vec3 normalize() const{
52  return vec3(x/sqrt(dot(*this)),y/sqrt(dot(*this)),z/sqrt(dot(*this)));
53  }
54 
55  /*TO MAKE
56  +=
57  -=
58  *=
59  /=
60  */
61 };
62 
63 __host__ __device__ vec3 reflect(const vec3& v, const vec3& n) {
64  return v - (n * (v.dot(n)) * 2.0f);
65 }
66 
67 __host__ __device__ bool refraction(const vec3& v, const vec3& n, float ni_nt, vec3& refract) {
68  vec3 in = v.normalize();
69  float proj = in.dot(n);
70  float discriminant = 1.0f - ni_nt * ni_nt * (1.0f - proj * proj);
71  if (discriminant > 0.0) {
72  refract = (in - n * proj) * ni_nt - n * sqrt(discriminant);
73  return true;
74  }
75  else {
76  return false;
77  }
78 }
79 
80 __host__ __device__ float schlick(float cosine, float ref_idx) {
81  float r0 = (1.0f - ref_idx) / (1.0f + ref_idx);
82  r0 = r0 * r0;
83  return r0 + (1.0f - r0) * pow((1.0f - cosine), 5.0f);
84 }
85 
86 #define randVec3 vec3(curand_uniform(local_rand_state),curand_uniform(local_rand_state),curand_uniform(local_rand_state))
87 
88 __device__ vec3 random_unit_sphere(curandState* local_rand_state) {
89  vec3 a;
90  do {
91  a = (randVec3 * 2.0f) - vec3(1, 1, 1);
92  } while (a.dot(a) >= 1.0f);
93  return a;
94 }
95 
96 #endif
Definition: vec3.h:10