[][src]Struct oxigen::slope_params::SlopeParams

pub struct SlopeParams {
    pub start: f64,
    pub bound: f64,
    pub coefficient: f64,
}

This struct easies the definition of a simple polynomial.

Fields

start: f64

Value in which the slope starts.

bound: f64

Minimum (or maximum if the slope is positive) possible value of the slope.

coefficient: f64

Coefficient of the slope (usually negative to decease rate along iterations).

Methods

impl SlopeParams[src]

pub fn check_bound(&self, y: f64) -> f64[src]

Returns the expected number: the bound or the result of the slope.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,