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 dot product of the voronoi edge and the input geometry (red) that created it. Note that the result technically is not a true centerline after the spikes has been filtered out, but it makes for much cleaner tool-paths etc.
rust
let segments = ...same as boost voronoi segments...
let mut centerline = Centerline::<i32, f32, i64, f64>::with_segments(segments);
centerline.build_voronoi()?;
let _= centerline.calculate_centerline(0.38, 0.1)?;
println!(
"Result: lines:{}, line_strings:{}",
centerline.lines.as_ref().map_or(0,|x|x.len()),
centerline.line_strings.as_ref().map_or(0,|x|x.len())
);
fish
cargo +nightly run --example fltk_gui
The example only displays 2D, but the generated centerline is actually 3D line segments.\
The Z coordinate is the distance between the 2D centerline 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.
Requires #![feature(hash_drain_filter)]
i.e. +nightly