1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-18 06:38:14 +01:00
This commit is contained in:
Justin Lin 2022-03-11 15:31:25 +08:00
parent 32f44ec9c1
commit a38fd21f43

View File

@ -3,7 +3,7 @@ use <_convex_intersection.scad>;
function _convex_intersection_for_impl(shapes, pre, leng, i = 2) =
i == leng ? pre :
let(r = _convex_intersection(pre, shapes[i]))
r == [] ? []
r == [] ? r
: _convex_intersection_for_impl(shapes,
r,
leng, i + 1