1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-25 15:42:41 +02:00

add loft_demo

This commit is contained in:
Justin Lin
2020-02-29 18:05:09 +08:00
parent c4e42b63a9
commit bcee3a899d

View File

@@ -0,0 +1,12 @@
use <shape_starburst.scad>;
use <rotate_p.scad>;
use <experimental/loft.scad>;
sects = [
for(i = [4:20])
[
for(p = shape_starburst(15, 12, i % 2 == 1 ? i : i - 1)) rotate_p([p[0], p[1], 3 * (i - 4)], i * 10)
]
];
loft(sects);