-
Notifications
You must be signed in to change notification settings - Fork 2
/
hittable_list.h
55 lines (44 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
#ifndef HITTABLE_LIST_H
#define HITTABLE_LIST_H
#include "hittable.h"
#include "check_cuda.h"
#include "aabb.h"
class hittable_list : public hittable {
public:
__device__ hittable_list() {}
__device__ hittable_list(hittable** list, size_t len) : objects(list), size(len) { }
__device__ virtual bool hit(
const ray& r, float t_min, float t_max, hit_record& rec) const override;
__device__ virtual bool bounding_box(
float time0, float time1, aabb& output_box) const override;
public:
hittable** objects;
size_t size;
};
__device__ bool hittable_list::hit(const ray& r, float t_min, float t_max, hit_record& rec) const {
hit_record temp_rec;
bool hit_anything = false;
float closest_so_far = t_max;
for (size_t i = 0; i < size; i++) {
hittable* object = objects[i];
if (object->hit(r, t_min, closest_so_far, temp_rec)) {
hit_anything = true;
closest_so_far = temp_rec.t;
rec = temp_rec;
}
}
return hit_anything;
}
__device__ bool hittable_list::bounding_box(float time0, float time1, aabb& output_box) const {
if (size == 0) return false;
aabb temp_box;
bool first_box = true;
for (size_t i = 0; i < size; i++) {
hittable* object = objects[i];
if (!object->bounding_box(time0, time1, temp_box)) return false;
output_box = first_box ? temp_box : surrounding_box(output_box, temp_box);
first_box = false;
}
return true;
}
#endif