geometry-algorithm-library
SolidImplement computational geometry algorithms
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 92/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Geometry Algorithm Library Skill
## Purpose
Implement computational geometry algorithms for competitive programming and algorithmic problems.
## Capabilities
- Convex hull (Graham scan, Andrew's monotone chain)
- Line intersection algorithms
- Closest pair of points
- Point in polygon tests
- Voronoi diagram, Delaunay triangulation
- Polygon clipping
## Target Processes
- computational-geometry
## Algorithm Catalog
### Convex Hull
- Graham scan O(n log n)
- Andrew's monotone chain O(n log n)
- Jarvis march O(nh)
### Intersection Algorithms
- Line sweep for segment intersection
- Bentley-Ottmann algorithm
- Polygon intersection
### Distance Problems
- Closest pair of points O(n log n)
- Farthest pair (rotating calipers)
- Point-polygon distance
### Triangulation
- Ear clipping O(n^2)
- Delaunay triangulation
- Voronoi diagram
## Input Schema
```json
{
"type": "object",
"properties": {
"algorithm": { "type": "string" },
"variant": { "type": "string" },
"language": {
"type": "string",
"enum": ["cpp", "python", "java"]
},
"includeVisualization": { "type": "boolean", "default": false }
},
"required": ["algorithm"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"code": { "type": "string" },
"complexity": { "type": "object" },
"usage": { "type": "string" }
},
"required": ["success", "code"]
}
```
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
geometry-primitive-library
Provide robust computational geometry primitives
1,160 Updated today
a5c-ai AI & Automation Solid
graph-algorithm-library
Comprehensive graph algorithms implementation
1,160 Updated today
a5c-ai AI & Automation Solid
algorithm-visualizer
Generate visual representations of algorithm execution
1,160 Updated today
a5c-ai AI & Automation Listed
computational-geometry
NURBS curves and surfaces, mesh geometry, boolean operations, subdivision surfaces, tessellation methods, surface analysis, and point cloud processing for AEC computational design
1 Updated today
marcinfinitesimal533 AI & Automation Solid
shapely-compute
Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates
496 Updated 1 months ago
vibeeval