1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-04-19 21:51:57 +02:00

refactor deps

This commit is contained in:
Justin Lin 2020-01-27 13:45:04 +08:00
parent cef421c6b0
commit 05d564af41
2 changed files with 27 additions and 32 deletions

View File

@ -8,6 +8,10 @@
*
**/
use <golden_spiral.scad>;
use <cross_sections.scad>;
use <polysections.scad>;
module golden_spiral_extrude(shape_pts, from, to, point_distance,
rt_dir = "CT_CLK", twist = 0, scale = 1.0, triangles = "SOLID") {
@ -39,10 +43,10 @@ module golden_spiral_extrude(shape_pts, from, to, point_distance,
);
// testing hook
test_golden_spiral_extrude(sections);
test_golden_spiral_extrude(sections, triangles);
}
// override it to test
module test_golden_spiral_extrude(sections) {
module test_golden_spiral_extrude(sections, triangles) {
}

File diff suppressed because one or more lines are too long