1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-16 11:44:50 +02:00

del comment

This commit is contained in:
Justin Lin
2021-06-26 12:34:10 +08:00
parent c69fd8820b
commit a3e27d98bf

View File

@@ -82,28 +82,4 @@ module sf_thicken(points, thickness, direction = "BOTH") {
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);
*/
}