File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Change Log -- Ray Tracing in One Weekend
8
8
- Fix: Standardized naming for ray-t and time parameters (#746 )
9
9
- Fix: ` random_unit_vector() ` was incorrect (#697 )
10
10
- Fix: Synchronize text and copies of ` hittable.h `
11
- - Fix: Synchronize copies of ` hittable_list.h ` , ` material.h `
11
+ - Fix: Synchronize copies of ` hittable_list.h ` , ` material.h ` , ` sphere.h `
12
12
13
13
### In One Weekend
14
14
Original file line number Diff line number Diff line change 16
16
#include " hittable.h"
17
17
18
18
19
- class sphere : public hittable {
19
+ class sphere : public hittable {
20
20
public:
21
21
sphere () {}
22
+
22
23
sphere (point3 cen, double r, shared_ptr<material> m)
23
24
: center(cen), radius(r), mat_ptr(m) {};
24
25
Original file line number Diff line number Diff line change 17
17
#include " onb.h"
18
18
19
19
20
- class sphere : public hittable {
20
+ class sphere : public hittable {
21
21
public:
22
22
sphere () {}
23
+
23
24
sphere (point3 cen, double r, shared_ptr<material> m)
24
25
: center(cen), radius(r), mat_ptr(m) {};
25
26
You can’t perform that action at this time.
0 commit comments