[][src]Module tray_rust::integrator::path

Defines the Path integrator which implements path tracing with explicit light sampling

See Kajiya, The Rendering Equation

Scene Usage Example

The pathtracer integrator needs a maximum ray depth to terminate rays at and a minimum ray depth to start applying Russian Roulette to terminate rays early.

"integrator": {
    "type": "pathtracer",
    "min_depth": 3,
    "max_depth": 8
}

Structs

Path

The path integrator implementing Path tracing with explicit light sampling