curvo 0.1.88

NURBS modeling library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::Intersection;

pub mod compound_curve_intersection;
pub mod curve_intersection_bfgs;
pub mod curve_intersection_problem;
pub mod curve_intersection_solver_options;
pub mod intersection_compound_curve;
pub mod intersection_curve_curve;

pub use compound_curve_intersection::*;
pub use curve_intersection_bfgs::*;
pub use curve_intersection_problem::*;
pub use curve_intersection_solver_options::*;

/// A struct representing the intersection of two curves.
pub type CurveCurveIntersection<P, T> = Intersection<P, T, T>;