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

add param

This commit is contained in:
Justin Lin 2021-08-19 10:42:12 +08:00
parent c5be2d398a
commit 888460d2e3

View File

@ -18,9 +18,9 @@ dist = "border"; // [euclidean, manhattan, chebyshev, border]
bottom = "YES"; // ["YES", "NO"]
epsilon = 0.0000001;
worley_vase(beginning_radius, height, fn, amplitude, curve_step, smoothness, dist, bottom, epsilon);
worley_vase(beginning_radius, height, thickness, fn, amplitude, curve_step, smoothness, dist, bottom, epsilon);
module worley_vase(beginning_radius, height, fn, amplitude,curve_step, smoothness, dist, bottom, epsilon) {
module worley_vase(beginning_radius, height, thickness, fn, amplitude,curve_step, smoothness, dist, bottom, epsilon) {
grid_width = 1.25;
seed = rand() * 1000;
section = shape_circle(radius = beginning_radius, $fn = fn);