From a3e27d98bf8def5f58b4742dc1a1f232ed641480 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 26 Jun 2021 12:34:10 +0800 Subject: [PATCH] del comment --- src/surface/sf_thicken.scad | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/src/surface/sf_thicken.scad b/src/surface/sf_thicken.scad index 86653e6f..2ef1b87e 100644 --- a/src/surface/sf_thicken.scad +++ b/src/surface/sf_thicken.scad @@ -82,28 +82,4 @@ module sf_thicken(points, thickness, direction = "BOTH") { sf_solidify(surface_top, surface_bottom); } } -} - -/* -use ; - -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); -*/ \ No newline at end of file +} \ No newline at end of file