1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-29 01:11:30 +02:00

fix CG error

This commit is contained in:
Justin Lin
2021-07-20 16:20:11 +08:00
parent 6c6093d46b
commit e312c03414

View File

@@ -211,7 +211,7 @@ module dragon() {
}
module flame_mountain(beginning_radius, fn, amplitude,curve_step, smoothness) {
seed = rand() * 1000;
seed = 1000;
section = shape_circle(radius = beginning_radius, $fn = fn);
pt = [beginning_radius, 0, 0];
@@ -253,7 +253,7 @@ rotate(60)
flame_mountain(
beginning_radius = 26,
fn = 18,
amplitude = 8,
amplitude = 7,
curve_step = 0.04,
smoothness = 10
);