mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
slice() cleanup tweak.
This commit is contained in:
parent
527215fa27
commit
1745dbbb7f
1 changed files with 1 additions and 1 deletions
2
vnf.scad
2
vnf.scad
|
@ -481,7 +481,7 @@ function _triangulate_planar_convex_polygons(polys) =
|
|||
tris = [for (poly=polys) if (len(poly)==3) poly],
|
||||
bigs = [for (poly=polys) if (len(poly)>3) poly],
|
||||
newtris = [for (poly=bigs) select(poly,-2,0)],
|
||||
newbigs = [for (poly=bigs) list_head(poly)],
|
||||
newbigs = [for (poly=bigs) select(poly,0,-2)],
|
||||
newtris2 = _triangulate_planar_convex_polygons(newbigs),
|
||||
outtris = concat(tris, newtris, newtris2)
|
||||
) outtris;
|
||||
|
|
Loading…
Reference in a new issue