From 69ef18471d11d7e25e47a1db8544852091069fc9 Mon Sep 17 00:00:00 2001 From: Sanjay Salem <38601117+sanjaysalem17@users.noreply.github.com> Date: Fri, 29 Oct 2021 15:18:15 -0500 Subject: [PATCH] updated Rect::Uniform to Rect --- src/student/pathtracer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/student/pathtracer.cpp b/src/student/pathtracer.cpp index c0b65af..3ca453d 100644 --- a/src/student/pathtracer.cpp +++ b/src/student/pathtracer.cpp @@ -13,7 +13,7 @@ Spectrum Pathtracer::trace_pixel(size_t x, size_t y) { // Generate a ray that uniformly samples pixel (x,y) and return the incoming light. // The following code generates a ray at the bottom left of the pixel every time. - // Tip: Samplers::Rect::Uniform + // Tip: Samplers::Rect // Tip: log_ray is useful for debugging Vec2 xy((float)x, (float)y); -- GitLab