flo_curves 0.8.0

Library for manipulating Bezier curves
Documentation
1
2
3
4
5
6
7
8
9
// See "A bezier curve-based root-finder", Philip J Schneider, Graphics Gems

mod polynomial_to_bezier;
mod find_roots;
mod nearest_point_bezier_root_finder;

pub use polynomial_to_bezier::*;
pub use find_roots::*;
pub use nearest_point_bezier_root_finder::*;