Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/furstenheim/go-convex-hull-2d

Convex hull of array of points
https://github.com/furstenheim/go-convex-hull-2d

Last synced: 21 days ago
JSON representation

Convex hull of array of points

Awesome Lists containing this project

README

        

## Go convex hull 2d

Docs can be found at https://godoc.org/github.com/furstenheim/go-convex-hull-2d

### Benchmarks

BenchmarkConvexHull/Convex_hull_of_size_100-4 200000 32315 ns/op
BenchmarkConvexHull/Convex_hull_of_size_1000-4 10000 372499 ns/op
BenchmarkConvexHull/Convex_hull_of_size_10000-4 1000 4672293 ns/op
BenchmarkConvexHull/Convex_hull_of_size_100000-4 100 51409862 ns/op
BenchmarkConvexHull/Convex_hull_of_size_1000000-4 10 650046827 ns/op

### Acknowledgment

Source code is based on https://github.com/mikolalysenko/monotone-convex-hull-2d, originally written in JS.