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
88 - Fix: Standardized naming for ray-t and time parameters (#746 )
99 - Fix: ` random_unit_vector() ` was incorrect (#697 )
1010 - 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 `
1212
1313### In One Weekend
1414
Original file line number Diff line number Diff line change 1616#include " hittable.h"
1717
1818
19- class sphere : public hittable {
19+ class sphere : public hittable {
2020 public:
2121 sphere () {}
22+
2223 sphere (point3 cen, double r, shared_ptr<material> m)
2324 : center(cen), radius(r), mat_ptr(m) {};
2425
Original file line number Diff line number Diff line change 1717#include " onb.h"
1818
1919
20- class sphere : public hittable {
20+ class sphere : public hittable {
2121 public:
2222 sphere () {}
23+
2324 sphere (point3 cen, double r, shared_ptr<material> m)
2425 : center(cen), radius(r), mat_ptr(m) {};
2526
You can’t perform that action at this time.
0 commit comments