-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstant_medium.h
71 lines (59 loc) · 2.18 KB
/
constant_medium.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
#ifndef CMEDH
#define CMEDH
#include "hitable.h"
#include "material.h"
#include "texture.h"
#include <float.h>
// class constant_medium : public hitable {
// public:
// constant_medium(hitable* b, float d, texture* a)
// : boundary(b)
// , density(d)
// {
// phase_function = new isotropic(a);
// }
// virtual bool hit(const ray& r, float t_min, float t_max, hit_record& rec) const;
// virtual bool bounding_box(float t0, float t1, aabb& box) const
// {
// return boundary->bounding_box(t0, t1, box);
// }
// hitable* boundary;
// float density;
// material* phase_function;
// };
// bool constant_medium::hit(const ray& r, float t_min, float t_max, hit_record& rec) const
// {
// const bool enableDebug = false;
// bool debugging = enableDebug && rand_float() < 0.00001;
// hit_record rec1, rec2;
// if (boundary->hit(r, -FLT_MAX, FLT_MAX, rec1)) {
// if (boundary->hit(r, rec1.t + 0.0001, FLT_MAX, rec2)) {
// if (debugging)
// std::cerr << "\nt0 t1 " << rec1.t << " " << rec2.t << std::endl;
// if (rec1.t < t_min)
// rec1.t = t_min;
// if (rec2.t > t_max)
// rec2.t = t_max;
// if (rec1.t >= rec2.t)
// return false;
// if (rec1.t < 0)
// rec1.t = 0;
// float distance_inside_boundary = (rec2.t - rec1.t) * r.direction().length();
// float hit_distance = -(1 / density) * log(rand_float());
// if (hit_distance < distance_inside_boundary) {
// rec.t = rec1.t + hit_distance / r.direction().length();
// rec.p = r.point_at_parameter(rec.t);
// if (debugging) {
// std::cerr << "hit_distance = " << hit_distance << '\n'
// << "rec.t = " << rec.t << '\n'
// << "rec.p = " << rec.p << '\n';
// }
// rec.normal = vec3(1, 0, 0); // arbitrary
// rec.mat_ptr = phase_function;
// return true;
// }
// }
// }
// return false;
// }
#endif