shape_core/elements/curves/
mod.rs

1/// Represent a 2d bezier curve
2#[derive(Debug)]
3pub struct BezierCurve {}
4/// Represent a 2d b-spline curve
5#[derive(Debug)]
6pub struct BSplineCurve {}