-
Notifications
You must be signed in to change notification settings - Fork 0
/
hittable_list.h
32 lines (27 loc) · 891 Bytes
/
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
#ifndef HITTABLE_LIST_H
#define HITTABLE_LIST_H
#include "hittable.h"
class HittableList: public Hittable {
public:
__device__ HittableList() {}
__device__ HittableList(Hittable** l, int n) {
list = l; list_size = n;
}
__device__ virtual bool hit(const Ray& r, double tmin, double tmax, HitRecord& rec) const;
Hittable** list;
int list_size;
};
__device__ bool HittableList::hit(const Ray& r, double t_min, double t_max, HitRecord& rec) const {
HitRecord temp_rec;
bool hit_anything = false;
float closest_so_far = t_max;
for (int i = 0; i < list_size; i++) {
if (list[i]->hit(r, t_min, closest_so_far, temp_rec)) {
hit_anything = true;
closest_so_far = temp_rec.t;
rec = temp_rec;
}
}
return hit_anything;
}
#endif // HITTABLE_LIST_H