[][src]Struct tray_rust::film::filter::gaussian::Gaussian

pub struct Gaussian { /* fields omitted */ }

A Gaussian reconstruction filter. Recommended parameters to try: w = 2.0, h = 2.0, alpha = 2.0

Methods

impl Gaussian[src]

pub fn new(w: f32, h: f32, alpha: f32) -> Gaussian[src]

Trait Implementations

impl Filter for Gaussian[src]

impl Clone for Gaussian[src]

impl Copy for Gaussian[src]

impl Debug for Gaussian[src]

Auto Trait Implementations

impl Send for Gaussian

impl Sync for Gaussian

impl Unpin for Gaussian

impl UnwindSafe for Gaussian

impl RefUnwindSafe for Gaussian

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]