Skip to content

harrison3000/delaunay

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Delaunay triangulation in Go

This is implementation of the Bowyer–Watson algorithm for the Delaunay triangulation as described by Paul Bourke. It is not optimized neither for speed nor for space.

Use at our own risk.

Usage:

    import d "github.com/uaraven/delaunay/delaunay"

    points := []d.Point{....}
    delaunay := d.InitDelaunay(points)
    triangles := delaunay.Triangulate()

Included is delaunay_visual.go to view the process of triangulation step by step.

About

Delaunay triangulation in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%