fix doc error

This commit is contained in:
Adrian Mariano 2021-09-15 18:27:01 -04:00
parent eec1d6b08c
commit ea7b947bcb

View file

@ -1561,10 +1561,9 @@ function point_in_polygon(point, poly, nonzero=false, eps=EPSILON) =
) 2*(len(cross)%2)-1; ) 2*(len(cross)%2)-1;
// Function: polygon_triangulate(poly, [ind], [eps]) // Function: polygon_triangulate()
// Usage: // Usage:
// triangles = polygon_triangulate(poly) // triangles = polygon_triangulate(poly, [ind], [eps])
// triangles = polygon_triangulate(poly, ind)
// Description: // Description:
// Given a simple polygon in 2D or 3D, triangulates it and returns a list // 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 // of triples indexing into the polygon vertices. When the optional argument `ind` is