pub trait ParamCurveCurvature: ParamCurveDerivwhere
    Self::DerivResult: ParamCurveDeriv,{
    // Provided method
    fn curvature(&self, t: f64) -> f64 { ... }
}
Expand description

A parametrized curve that reports its curvature.

Provided Methods§

fn curvature(&self, t: f64) -> f64

Compute the signed curvature at parameter t.

Implementors§