[][src]Module tray_rust::film::filter

The filter module provides reconstruction filters to be used when writing samples to the render target. The filter width and height refer to how many pixels the filter covers, where a single pixel is 0.5x0.5

Re-exports

pub use self::gaussian::Gaussian;
pub use self::mitchell_netravali::MitchellNetravali;

Modules

gaussian

Provides a Gaussian reconstruction filter.

mitchell_netravali

Provides an implementation of the Mitchell-Netravali reconstruction filter. See Reconstruction Filters in Computer Graphics.

Traits

Filter

Trait implemented by all reconstructon filters. Provides methods for getting the width/height and computing the weight at some point relative to the filter center.