pub trait BoundedCurve: ParametricCurve {
    fn parameter_range(&self) -> (f64, f64);

    fn front(&self) -> Self::Point { ... }
    fn back(&self) -> Self::Point { ... }
}
Expand description

bounded parametric curves

Required Methods§

The range of the parameter of the curve.

Provided Methods§

The front end point of the curve.

The back end point of the curve.

Implementations on Foreign Types§

Implementation for the test of topological methods.

Implementation for the test of topological methods.

Implementors§