diff --git a/RayTracer/shape/CirclePlane.cpp b/RayTracer/shape/CirclePlane.cpp index 991a426ac2e799f9233ecc6a67645bd3bdb982e1..76d6d8129f11187a0db66bee9311952d1c629d28 100644 --- a/RayTracer/shape/CirclePlane.cpp +++ b/RayTracer/shape/CirclePlane.cpp @@ -61,10 +61,12 @@ util::Vec3 CirclePlane::calculateLightEmission(const util::SurfacePoint& p, // the light in regard to the angle. // Uniform pdf of shape is 1/area, converting to pdf over solid angle is // pdf/(dot/length^2). + // This is wrong. We just need the normal pdf, per area, as we do not sample + // with regard to a direction. auto emission = p.emission(); auto dot = std::max<float>(util::dot(p.normal(), d.normalize()), 0); auto area = M_PI * std::pow(radius, 2); - auto pdf = std::pow(d.length(), 2) / (dot * area); + auto pdf = 1 / area; return emission / pdf; } } // namespace shapes diff --git a/RayTracer/shape/RectanglePlane.cpp b/RayTracer/shape/RectanglePlane.cpp index 21c62d24153e0be68bbadb5c55f820cea3eec726..ebc6e2c10850f181b2e7fa37da53fe6d40f708c1 100644 --- a/RayTracer/shape/RectanglePlane.cpp +++ b/RayTracer/shape/RectanglePlane.cpp @@ -62,10 +62,12 @@ util::Vec3 RectanglePlane::calculateLightEmission(const util::SurfacePoint& p, // the light in regard to the angle. // Uniform pdf of shape is 1/area, converting to pdf over solid angle is // pdf/(dot/length^2). + // This is wrong. We just need the normal pdf, per area, as we do not sample + // with regard to a direction. auto emission = p.emission(); auto dot = std::max<float>(util::dot(p.normal(), d.normalize()), 0); auto area = width * depth; - auto pdf = std::pow(d.length(), 2) / (dot * area); + auto pdf = 1 / area; return emission / pdf; } } // namespace shapes