1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 17:54:18 +02:00

scale x, y

This commit is contained in:
Justin Lin
2019-10-31 21:46:07 +08:00
parent 16f6fcfbb6
commit 7f12425364

View File

@@ -1,3 +1,17 @@
include <polysections.scad>;
include <util/reverse.scad>;
thickness = 0.05;
theta_from = PI * 1.75;
theta_to = PI * 15;
theta_step = 0.05;
rf_to = 1;
rf_step = 0.025;
color("red") rose();
module rose() {
function phi(theta) =
(PI / 2) * exp(-theta / (8 * PI));
@@ -39,5 +53,4 @@ module rose() {
];
polysections(sections);
}
}