1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-18 06:38:14 +01:00

remove code

This commit is contained in:
Justin Lin 2020-04-14 13:42:55 +08:00
parent ee6dcf04c0
commit c1c8681036

View File

@ -1,10 +1,6 @@
use <experimental/assoc_lookup.scad>;
use <turtle/turtle2d.scad>;
function _rule_n(range, leng, rand_n, i = 0) =
i == leng ? i :
rand_n < range[i] ? i + 1 : _rule_n(range, leng, rand_n, i + 1);
// It doesn't use recursion to avoid recursion error.
function _join(strs) =
let(leng = len(strs))