curvo 0.1.88

NURBS modeling library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod split_compound_curve;
pub mod split_nurbs_curve;
pub mod split_nurbs_surface;

pub use split_nurbs_surface::*;

/// Split the object into two objects with the given option
pub trait Split
where
    Self: Sized,
{
    type Option;
    fn try_split(&self, option: Self::Option) -> anyhow::Result<(Self, Self)>;
}