[][src]Struct sdfu::ops::ExponentialSmoothMin

pub struct ExponentialSmoothMin<T> {
    pub k: T,
}

Takes the minimum of two values, smoothing between them when they are close.

This uses an exponential function to smooth between the two values, and k controls the radius/distance of the smoothing. 32 is a good default value for k for this smoothing function.

Fields

k: T

Trait Implementations

impl<T> MinFunction<T> for ExponentialSmoothMin<T> where
    T: Copy + Neg<Output = T> + Mul<T, Output = T> + Add<T, Output = T> + Div<T, Output = T> + Log2 + Exp2
[src]

impl Default for ExponentialSmoothMin<f32>[src]

impl Default for ExponentialSmoothMin<f64>[src]

impl<T: Clone> Clone for ExponentialSmoothMin<T>[src]

impl<T: Copy> Copy for ExponentialSmoothMin<T>[src]

impl<T: Debug> Debug for ExponentialSmoothMin<T>[src]

Auto Trait Implementations

impl<T> Send for ExponentialSmoothMin<T> where
    T: Send

impl<T> Unpin for ExponentialSmoothMin<T> where
    T: Unpin

impl<T> Sync for ExponentialSmoothMin<T> where
    T: Sync

impl<T> UnwindSafe for ExponentialSmoothMin<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for ExponentialSmoothMin<T> where
    T: RefUnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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