curvo 0.1.88

NURBS modeling library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod curve_fillet_option;
pub mod fillet_compound_curve;
pub mod fillet_nurbs_curve;
pub use curve_fillet_option::*;

mod helper;
mod segment;

/// Trait for filleting a geometry
/// O is the option type for the fillet
pub trait Fillet<O> {
    type Output;
    fn fillet(&self, option: O) -> Self::Output;
}