Trait truck_geometry::base::traits::BoundedSurface

source ·
pub trait BoundedSurface: ParametricSurface {
    // Provided method
    fn range_tuple(&self) -> ((f64, f64), (f64, f64)) { ... }
}
Expand description

Bounded surface with parametric range i.e. it is guaranteed that the return value of parameter_range is not Bound::Unbounded.

Provided Methods§

source

fn range_tuple(&self) -> ((f64, f64), (f64, f64))

Return the ends of parameter_range by tuple.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl BoundedSurface for ()

Implementation for the test of topological methods.

source§

impl<'a, S> BoundedSurface for &'a S
where S: BoundedSurface,

source§

impl<S> BoundedSurface for Box<S>
where S: BoundedSurface,

Implementors§