https://github.com/evetion/startin.jl
A Julia wrapper around the Delaunay triangulator startin written in Rust by @hugoledoux
https://github.com/evetion/startin.jl
delaunay rust tin
Last synced: about 21 hours ago
JSON representation
A Julia wrapper around the Delaunay triangulator startin written in Rust by @hugoledoux
- Host: GitHub
- URL: https://github.com/evetion/startin.jl
- Owner: evetion
- License: mit
- Created: 2021-03-08T14:01:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-24T13:51:30.000Z (almost 4 years ago)
- Last Synced: 2025-10-12T10:09:43.465Z (about 21 hours ago)
- Topics: delaunay, rust, tin
- Language: Julia
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StarTIN
[](https://evetion.github.io/StarTIN.jl/stable)
[](https://evetion.github.io/StarTIN.jl/dev)
[](https://github.com/evetion/StarTIN.jl/actions)A Julia wrapper around the Delaunay triangulator [startin](https://github.com/hugoledoux/startin) written in Rust by @hugoledoux.
# Install
```julia
]add StarTIN
```# Usage
```julia
using StarTINt = 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