From ea7b947bcbecf5d74141f54d18da4077f51b404f Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Wed, 15 Sep 2021 18:27:01 -0400 Subject: [PATCH] fix doc error --- geometry.scad | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/geometry.scad b/geometry.scad index 30dc581..34fb3e9 100644 --- a/geometry.scad +++ b/geometry.scad @@ -1561,10 +1561,9 @@ function point_in_polygon(point, poly, nonzero=false, eps=EPSILON) = ) 2*(len(cross)%2)-1; -// Function: polygon_triangulate(poly, [ind], [eps]) +// Function: polygon_triangulate() // Usage: -// triangles = polygon_triangulate(poly) -// triangles = polygon_triangulate(poly, ind) +// triangles = polygon_triangulate(poly, [ind], [eps]) // Description: // Given a simple polygon in 2D or 3D, triangulates it and returns a list // of triples indexing into the polygon vertices. When the optional argument `ind` is