When i tried this code of the book 2 in the book 3, no matter what color I apply it stays black.
shared_ptr<hittable> boundary = make_shared<sphere>(point3(200,150,200), 70, make_shared<dielectric>(1.5)); objects.add(boundary); objects.add(make_shared<constant_medium>(boundary, 0.2, color(1, 1, 1)));
What am i doing wrong??