1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-09 08:16:50 +02: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) = function _convex_intersection_for_impl(shapes, pre, leng, i = 2) =
i == leng ? pre : i == leng ? pre :
let(r = _convex_intersection(pre, shapes[i])) let(r = _convex_intersection(pre, shapes[i]))
r == [] ? [] r == [] ? r
: _convex_intersection_for_impl(shapes, : _convex_intersection_for_impl(shapes,
r, r,
leng, i + 1 leng, i + 1