From 53dc3fd81e20decf87ebe503f32d25d36e48f085 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 1 May 2021 09:40:40 +0800 Subject: [PATCH] update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 03c8ecb2..d053f6f6 100644 --- a/README.md +++ b/README.md @@ -357,8 +357,8 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp --|-- **tri_circumcenter**(shape_pts) | return the circumcenter of a triangle. **tri_incenter**(shape_pts) | return the incenter of a triangle. -**tri_ear_clipping**(shape_pts, ret = "TRI_INDICES", ...) | triangulate a simple polygon. -**tri_delaunay**(points, ret = "TRI_INDICES") | return the delaunay triangulation of the points. +**tri_ear_clipping**(shape_pts, ret = "TRI_INDICES", ...) | triangulation by [ear clipping](https://en.wikipedia.org/wiki/Polygon_triangulation#Ear_clipping_method). +**tri_delaunay**(points, ret = "TRI_INDICES") | return the [Delaunay triangulation](https://en.wikipedia.org/wiki/Delaunay_triangulation) of the points. **tri_delaunay_indices**(d) | return triangle indices from a delaunay object. **tri_delaunay_shapes**(d) | return triangle shapes from a delaunay object. -**tri_delaunay_voronoi**(d) | return voronoi cells from a delaunay object. \ No newline at end of file +**tri_delaunay_voronoi**(d) | return [Voronoi](https://en.wikipedia.org/wiki/Voronoi_diagram) cells from a delaunay object. \ No newline at end of file