mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-17 12:10:47 +02:00
del comment
This commit is contained in:
@@ -82,28 +82,4 @@ module sf_thicken(points, thickness, direction = "BOTH") {
|
|||||||
sf_solidify(surface_top, surface_bottom);
|
sf_solidify(surface_top, surface_bottom);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
use <surface/sf_thicken.scad>;
|
|
||||||
|
|
||||||
function f(x, y) =
|
|
||||||
30 * (
|
|
||||||
cos(sqrt(pow(x, 2) + pow(y, 2))) +
|
|
||||||
cos(3 * sqrt(pow(x, 2) + pow(y, 2)))
|
|
||||||
);
|
|
||||||
|
|
||||||
thickness = 3;
|
|
||||||
min_value = -200;
|
|
||||||
max_value = 200;
|
|
||||||
resolution = 10;
|
|
||||||
|
|
||||||
surface1 = [
|
|
||||||
for(y = [min_value:resolution:max_value])
|
|
||||||
[
|
|
||||||
for(x = [min_value:resolution:max_value])
|
|
||||||
[x, y, f(x, y) + 100]
|
|
||||||
]
|
|
||||||
];
|
|
||||||
sf_thicken(surface1, thickness);
|
|
||||||
*/
|
|
Reference in New Issue
Block a user