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

https://github.com/helyousfi/computational-geometry


https://github.com/helyousfi/computational-geometry

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# Core Computational Geometry Topics
## Convex Hulls
- Graham's scan algorithm
- Jarvis's march (Gift wrapping) algorithm
## Line Segment Intersection
- Bentley-Ottmann algorithm
- Sweep line algorithm
## Polygon Triangulation
- Ear clipping method
- Seidel's algorithm
## Voronoi Diagrams and Delaunay Triangulation
- Fortune's algorithm
- Bowyer-Watson algorithm
## Closest Pair of Points
- Divide-and-conquer approach
## Range Searching
- Kd-trees
- Range trees
## Point in Polygon
- Ray casting algorithm
- Winding number algorithm