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 13 __host__ __device__
vec3(
float a,
float b,
float c) {
18 __host__ __device__
vec3 () {}
20 __host__ __device__
vec3 operator +(
const vec3 &v)
const {
21 return vec3(x+v.x,y+v.y,z+v.z);
23 __host__ __device__
vec3 operator -(
const vec3 &v)
const {
24 return vec3(x-v.x,y-v.y,z-v.z);
26 __host__ __device__
vec3 operator *(
const float &s)
const {
27 return vec3(x*s,y*s,z*s);
29 __host__ __device__
vec3 operator *(
const vec3 &v)
const {
30 return vec3(x*v.x,y*v.y,z*v.z);
32 __host__ __device__
vec3 operator /(
const float &s)
const {
33 return vec3(x/s,y/s,z/s);
35 __host__ __device__
vec3 operator /(
const vec3 &v)
const {
36 return vec3(x/v.x,y/v.y,z/v.z);
38 __host__ __device__
vec3 operator -()
const {
39 return vec3(-x,-y,-z);
42 __host__ __device__
float dot(
const vec3 &v)
const{
43 return x*v.x+y*v.y+z*v.z;
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);
48 __host__ __device__
float magnitude()
const{
49 return sqrt(dot(*
this));
51 __host__ __device__
vec3 normalize()
const{
52 return vec3(x/sqrt(dot(*
this)),y/sqrt(dot(*
this)),z/sqrt(dot(*
this)));
63 __host__ __device__
vec3 reflect(
const vec3& v,
const vec3& n) {
64 return v - (n * (v.dot(n)) * 2.0f);
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);
80 __host__ __device__
float schlick(
float cosine,
float ref_idx) {
81 float r0 = (1.0f - ref_idx) / (1.0f + ref_idx);
83 return r0 + (1.0f - r0) * pow((1.0f - cosine), 5.0f);
86 #define randVec3 vec3(curand_uniform(local_rand_state),curand_uniform(local_rand_state),curand_uniform(local_rand_state)) 88 __device__
vec3 random_unit_sphere(curandState* local_rand_state) {
91 a = (randVec3 * 2.0f) -
vec3(1, 1, 1);
92 }
while (a.dot(a) >= 1.0f);