1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-10 16:54:23 +02:00

rename param

This commit is contained in:
Justin Lin
2021-07-21 11:08:10 +08:00
parent 0d188fa96c
commit 88775366db

View File

@@ -11,6 +11,6 @@
use <../util/rand.scad>;
use <_impl/_nz_worley3_impl.scad>;
function nz_worley3(x, y, z, seed, tile_w = 10, dist = "euclidean") =
function nz_worley3(x, y, z, seed, grid_w = 10, dist = "euclidean") =
let(sd = is_undef(seed) ? floor(rand(0, 256)) : seed % 256)
_nz_worley3([x, y, z], sd, tile_w, dist);
_nz_worley3([x, y, z], sd, grid_w, dist);