Trait curve::Curve [] [src]

pub trait Curve<T: Float> {
    fn evaluate(&self, _: T) -> T;
}

A curve.

Required Methods

Evalute the curve at a point in [0, 1].

Implementors