Skip to main content

QuinticSpline

Type Alias QuinticSpline 

Source
pub type QuinticSpline = SplineCurve<5, 1>;
Expand description

1D quintic spline. Supports plotting with the plot feature.

Aliased Type§

pub struct QuinticSpline {
    pub t: Vec<f64>,
    pub c: Vec<f64>,
    /* private fields */
}

Fields§

§t: Vec<f64>§c: Vec<f64>