pub trait TransferFunction: 'static {
    // Required methods
    fn from_linear<T: Float>(x: T) -> T;
    fn to_linear<T: Float>(x: T) -> T;
}

Required Methods§

source

fn from_linear<T: Float>(x: T) -> T

source

fn to_linear<T: Float>(x: T) -> T

Implementors§