1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-06 14:56:47 +02:00
This commit is contained in:
Justin Lin
2022-05-03 16:49:47 +08:00
parent b7bc803849
commit 5e289d6442

View File

@@ -10,9 +10,8 @@ function _convex_intersection_for_impl(shapes, pre, leng, i = 2) =
); );
function _convex_intersection_for(shapes) = function _convex_intersection_for(shapes) =
let(leng = len(shapes))
_convex_intersection_for_impl( _convex_intersection_for_impl(
shapes, shapes,
_convex_intersection(shapes[0], shapes[1]), _convex_intersection(shapes[0], shapes[1]),
leng len(shapes)
); );