Crates.io Documentation Workflow Workflow dependency status

Centerline

centerline

Finds 'a' centerline of closed 2D geometries. It uses a segmented voronoi diagram as a base, then it filters out the 'spiky' bits (green) by comparing the angle between the edge (green), and the input geometry (red) that created it. If the angle is close to 90°, it will be ignored. Note that the result (blue) technically is not a true centerline after the spikes has been filtered out, but it makes for much cleaner tool-paths etc. It also performs a line simplification on the resulting center-line.

unfiltered filtered

```rust let segments = ...same as boost voronoi segments... let mut centerline = Centerline::::withsegments(segments); centerline.buildvoronoi()?; let normalizeddotproductlimit:f32 = 0.38; let centerlinesimplification:f32 = 0.1;

let = centerline.calculatecenterline(normalizeddotproductlimit, centerlinesimplification)?; println!( "Result: lines:{}, linestrings:{}", centerline.lines.asref().mapor(0,|x|x.len()), centerline.linestrings.asref().mapor(0,|x|x.len()) ); ```

Gui example

fish cargo +nightly run --example fltk_gui The example only displays 2D, but the generated center-line is actually 3D line segments.\ The Z coordinate is the distance between the 2D center-line, and the geometry that created it.

It should be possible to replace the example input data by overwriting the rust.obj file in the example folder. The new .obj file just needs to be 2D in some axis aligned plane. Make sure there are no intersecting outer edges though.

Rust requirement

Requires #![feature(hash_drain_filter)] i.e. +nightly

Todo