1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-02 19:22:48 +02:00

rename param

This commit is contained in:
Justin Lin
2020-04-06 17:27:25 +08:00
parent 22a6891f8b
commit a64a4d2399
11 changed files with 30 additions and 30 deletions

View File

@@ -3,7 +3,7 @@ use <sweep.scad>;
radius = 25;
a_step = 5;
cell_w = 10;
tile_w = 10;
dist = "euclidean"; // [euclidean, manhattan, chebyshev, "border"]
noise_style = "CELL_R"; // [CELL_R, NOISE]
noise_factor = 1;
@@ -34,7 +34,7 @@ module worley_noise_ball() {
nz_worley3s(
[for(theta_tau = row) to_xyz([radius, theta_tau[0], theta_tau[1]])],
seed,
cell_w,
tile_w,
dist
)
];