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

A parametrized curve that reports its curvature.

Provided Methods§

source

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

Compute the signed curvature at parameter t.

Implementors§