1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-31 02:10:28 +02:00
This commit is contained in:
Justin Lin
2020-03-17 14:29:27 +08:00
parent bcc352a6fd
commit ab53d858e2
6 changed files with 15 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
use <torus_knot.scad>;
use <cross_sections.scad>;
use <circle_path.scad>;
use <shape_circle.scad>;
use <shape_pentagram.scad>;
use <experimental/tri_bisectors.scad>;
use <experimental/hollow_out_sweep.scad>;
@@ -16,7 +16,7 @@ if(section_style == "STAR") {
hollow_out_torus_knot(shape_pentagram(.5), p, q, phi_step, thickness, line_style);
}
else {
hollow_out_torus_knot(circle_path(radius = .5, $fn = 12), p, q, phi_step, thickness, line_style);
hollow_out_torus_knot(shape_circle(radius = .5, $fn = 12), p, q, phi_step, thickness, line_style);
}
module hollow_out_torus_knot(shape, p, q, phi_step, thickness, line_style) {