Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 780 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 780 Bytes

StarTIN

Stable Dev Build Status

A Julia wrapper around the Delaunay triangulator startin written in Rust by @hugoledoux.

Install

]add StarTIN

Usage

using StarTIN

t = DT()
points = rand(3,100)
insert!(t, points)

value = interpolate_linear(t, 0.5, 0.5)

write!("test.obj", t)

TODO

  • Add support for DT options, such as random walking or not
  • Add support for retrieving all stars/triangles