pub trait ParametricCurve: Clone {
    type Point;
    type Vector;

    fn subs(&self, t: f64) -> Self::Point;
    fn der(&self, t: f64) -> Self::Vector;
    fn der2(&self, t: f64) -> Self::Vector;
}
Expand description

Parametric curves

Required Associated Types§

The curve is in the space of Self::Point.

The derivation vector of the curve.

Required Methods§

Substitutes the parameter t.

Returns the derivation.

Returns the 2nd-order derivation.

Implementations on Foreign Types§

Implementation for the test of topological methods.

Implementation for the test of topological methods.

Implementors§