flo_curves
flo_curves copied to clipboard
Bezier curve library for Rust
```rs pub fn fit_curve_cubic(points: &[Curve::Point], start_tangent: &Curve::Point, end_tangent: &Curve::Point, iterations: u32) -> Vec { if points.len()
I have an example where a larger ellipse entirely overlaps a smaller one. This is how it should look like: Running that through `flo_curves` seems to produce this. Note that...
I am looking for a way to walk [BezierPath](https://docs.rs/flo_curves/latest/flo_curves/bezier/path/trait.BezierPath.html) evenly to get points and their tangents. I also need to specify initial offset (space). What would be a good approach...
There are sometimes discontinuities in the bezier spline given from `Curve::fit_from_points`. I expect the spline to consist of connecting curves. Since the spline does connect most of the time, I...
I'm guessing that this is not so much a bug, as much as "missing functionality", so bear with me. I'm using `flo_curves` to manipulate paths in an application where whether...
I'm trying to use the distance_to function to check whether a certain point is on a line, but have been receiving unexpected results. I wrote a basic test to showcase...
Hello Flo_Curves Devs, I found a bug with the marking of interior/exterior edges when subtracting complex shapes in a specific way in both v0.7.3 and v0.8.0. It begins with a...