[FEAT] Add shadow support

This commit is contained in:
2024-02-26 23:32:33 +01:00
parent 58938fbb0c
commit 0ce6bb15f0
14 changed files with 289 additions and 14 deletions

View File

@@ -77,7 +77,8 @@ int shadow_sphere(uint8_t a_canvas_pixels, double a_wall_size, uint8_t a_wall_z)
Tuple the_point = the_ray.position(the_intersec.distance_t());
Tuple the_normal = the_intersec.object().normal_at(the_point);
Tuple the_eye = -the_ray.direction();
Color the_color = the_intersec.object().material().lighting(the_light, the_point, the_eye, the_normal);
Color the_color =
the_intersec.object().material().lighting(the_light, the_point, the_eye, the_normal, false);
the_canvas.write_pixel(x, y, the_color);
}
}