[][src]Struct tray_rust::film::filter::mitchell_netravali::MitchellNetravali

pub struct MitchellNetravali { /* fields omitted */ }

A Mitchell-Netravali reconstruction filter. Recommended parameters to try: w = 2.0, h = 2.0, b = 1.0 / 3.0, c = 1.0 / 3.0

Methods

impl MitchellNetravali[src]

pub fn new(w: f32, h: f32, b: f32, c: f32) -> MitchellNetravali[src]

Trait Implementations

impl Filter for MitchellNetravali[src]

impl Clone for MitchellNetravali[src]

impl Copy for MitchellNetravali[src]

impl Debug for MitchellNetravali[src]

Auto Trait Implementations

impl Send for MitchellNetravali

impl Sync for MitchellNetravali

impl Unpin for MitchellNetravali

impl UnwindSafe for MitchellNetravali

impl RefUnwindSafe for MitchellNetravali

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]