1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-31 18:22:08 +02:00
This commit is contained in:
Justin Lin
2021-11-12 09:54:03 +08:00
parent 402aa95289
commit 5016231000
4 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
use <shape_starburst.scad>;
use <shape_star.scad>;
use <polyline_join.scad>;
use <experimental/tri_bisectors.scad>;
@@ -10,7 +10,7 @@ line_diameter = 1.75;
half = true;
module hollow_out_starburst(r1, r2, h, n, line_diameter, half = false) {
star = [for(p = shape_starburst(r1, r2, n)) [p[0], p[1], 0]];
star = [for(p = shape_star(r1, r2, n)) [p[0], p[1], 0]];
leng = len(star);
tris = concat(
[for(i = [0:leng - 2]) [[0, 0, h], star[i], star[i + 1]]],