-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhittable_list.h
61 lines (47 loc) · 1.52 KB
/
hittable_list.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
#ifndef HITTABLE_LIST_H
#define HITTABLE_LIST_H
#include "util.h"
#include "hittable.h"
#include "aabb.h"
#include <memory>
#include <vector>
using std::shared_ptr;
using std::make_shared;
class hittable_list : public hittable {
private:
aabb bbox;
public:
std::vector<shared_ptr<hittable>> objects;
hittable_list() {}
hittable_list(shared_ptr<hittable> object) {
add(object);
bbox = aabb(bbox, object->bounding_box());
}
void add(shared_ptr<hittable> object) {
objects.push_back(object);
bbox = aabb(bbox, object->bounding_box());
}
int length() {
return objects.size();
}
aabb bounding_box() const override {
return bbox;
}
// only want to store a record of the closest object hit
bool hit(const ray& r, interval ray_t, hit_record& rec) const override {
auto closestMax = ray_t.max;
hit_record temp_rec;
bool hitAnything = false;
for (const auto& object: objects) {
if (object->hit(r, interval(ray_t.min, closestMax), temp_rec)) {
if (temp_rec.t < closestMax) {
closestMax = temp_rec.t;
rec = temp_rec;
hitAnything = true;
}
}
}
return hitAnything;
}
};
#endif