Design Nomenclature / Light & Optics
Path tracing
Also called Monte Carlo path tracing, brute-force GI
This entry has not been translated yet and is shown in English.
Monte Carlo integration of the rendering equation: follow a random walk from the camera, sampling one scattering direction per bounce, and average many such paths per pixel. Unbiased — noise falls as the square root of the sample count and the estimate converges on the correct answer.
In practice
The noise is the estimator working, not a defect. Every denoiser trades that honest variance for a bias you cannot see coming.
Not to be confused with
- Ray tracingHistorically, Whitted's 1980 method: trace one ray per pixel, recurse into the mirror and refraction directions, and fire shadow rays at point lights. It resolves specular transport and nothing else — no diffuse interreflection, and no soft shadows without extending it.
- RadiosityStrictly, a finite-element method that divides a scene into patches, computes form factors between them, and solves the resulting linear system for diffuse interreflection — view-independent, no speculars, and effectively unused since the 1990s. Loosely, and confusingly, the same word gets thrown at global illumination in general.
- Global illuminationAny solution to light transport accounting for light that arrives after reflecting off other surfaces, not only direct from emitters. It is a category, not an algorithm — radiosity, photon mapping, path tracing, and irradiance caching all compute it, with different biases and different failure modes.