[][src]Struct tray_rust::sampler::adaptive::Adaptive

pub struct Adaptive { /* fields omitted */ }

Adaptive sampler that makes use of the (0, 2) sequence to generate well distributed samples and takes min_spp to max_spp samples per pixel

Methods

impl Adaptive[src]

pub fn new(dim: (u32, u32), min_spp: usize, max_spp: usize) -> Adaptive[src]

Create a low discrepancy sampler to sample the image in dim.0 * dim.1 sized blocks

Trait Implementations

impl Sampler for Adaptive[src]

Auto Trait Implementations

impl Send for Adaptive

impl Sync for Adaptive

impl Unpin for Adaptive

impl UnwindSafe for Adaptive

impl RefUnwindSafe for Adaptive

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T[src]