mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-01 04:20:27 +02:00
rename param
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
use <_hashset_add_impl.scad>;
|
||||
|
||||
function _hashset(elems, leng, buckets, eq, hash, i = 0) =
|
||||
function _hashset(lt, leng, buckets, eq, hash, i = 0) =
|
||||
i == leng ? buckets :
|
||||
_hashset(elems, leng, _hashset_add(buckets, elems[i], eq, hash), eq, hash, i + 1);
|
||||
_hashset(lt, leng, _hashset_add(buckets, lt[i], eq, hash), eq, hash, i + 1);
|
Reference in New Issue
Block a user