An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# StarTIN

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://evetion.github.io/StarTIN.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://evetion.github.io/StarTIN.jl/dev)
[![Build Status](https://github.com/evetion/StarTIN.jl/workflows/CI/badge.svg)](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 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