Tweak to centroid() docs.

This commit is contained in:
Garth Minette
2022-07-10 16:48:15 -07:00
parent 8373b2db38
commit 214d382e1b
2 changed files with 4 additions and 2 deletions

View File

@@ -1142,7 +1142,7 @@ function _assemble_a_path_from_fragments(fragments, rightmost=true, startfrag=0,
/// fragments = List of paths to be assembled into complete polygons.
/// eps = The epsilon error value to determine whether two points coincide. Default: `EPSILON` (1e-9)
function _assemble_path_fragments(fragments, eps=EPSILON, _finished=[]) =
len(fragments)==0? _finished :
len(fragments)==0? _finished :
let(
minxidx = min_index([
for (frag=fragments) min(column(frag,0))