1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 17:24:20 +02:00

use vt mult

This commit is contained in:
Justin Lin
2022-05-16 09:08:31 +08:00
parent 6d83e02312
commit 6c1a1502dd

View File

@@ -18,7 +18,6 @@ function shape_ellipse(axes) =
step_a = 360 / frags
)
[
for(i = [0:frags - 1])
let(a = i * step_a)
[axes0 * cos(a), axes1 * sin(a)]
for(a = [each [0:frags - 1]] * step_a)
[axes0 * cos(a), axes1 * sin(a)]
];