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

change param

This commit is contained in:
Justin Lin
2022-04-24 18:48:54 +08:00
parent 4f43260f44
commit c4d9674a0e

View File

@@ -18,15 +18,15 @@ s_s = -150;
s_step = 20; s_step = 20;
s_e = 90; s_e = 90;
thickness = .2; thickness = 1.5;
seashell(); seashell();
module seashell() { module seashell() {
e = 2.71828; e = 2.7182818284590452;
real_e = e / 2.74; real_e = e * 0.3615; // avoid inf
pow_a = (a / 10) ^ 2; pow_a = a ^ 2 / 100;
pow_b = (b / 10) ^ 2; pow_b = b ^ 2 / 100;
function cot(degree) = 1 / tan(degree); function cot(degree) = 1 / tan(degree);