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

added testing hook

This commit is contained in:
Justin Lin
2017-07-01 17:46:16 +08:00
parent be231e37cc
commit 33b56290c9

View File

@@ -28,8 +28,18 @@ module archimedean_spiral_extrude(shape_pts, arm_distance, init_angle, point_dis
[90, 0, pa[1] + clk_a]
];
sections = cross_sections(shape_pts, points, angles, twist, scale);
polysections(
cross_sections(shape_pts, points, angles, twist, scale),
sections,
triangles = triangles
);
}
);
// testing hook
test_archimedean_spiral_extrude(sections);
}
// override it to test
module test_archimedean_spiral_extrude(sections) {
}