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

Required Methods

Implementors