A Julia wrapper around the Delaunay triangulator startin written in Rust by @hugoledoux.
]add StarTIN
using StarTIN
t = DT()
points = rand(3,100)
insert!(t, points)
value = interpolate_linear(t, 0.5, 0.5)
write!("test.obj", t)
- Add support for DT options, such as random walking or not
- Add support for retrieving all stars/triangles