bevy_math::cubic_splines

Trait RationalGenerator

Source
pub trait RationalGenerator<P: VectorSpace> {
    // Required method
    fn to_curve(&self) -> RationalCurve<P>;
}
Expand description

Implement this on cubic splines that can generate a rational cubic curve from their spline parameters.

Required Methods§

Source

fn to_curve(&self) -> RationalCurve<P>

Build a RationalCurve by computing the interpolation coefficients for each curve segment.

Implementors§