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

added test hook

This commit is contained in:
Justin Lin
2017-07-01 17:53:26 +08:00
parent d2ce486714
commit dcb172803e

View File

@@ -30,10 +30,20 @@ module sphere_spiral_extrude(shape_pts, radius, za_step,
points = [for(pa = points_angles) pa[0]];
angles = [for(pa = points_angles) [pa[1][0] + v_clk, pa[1][1], pa[1][2] + r_clk]];
polysections(
cross_sections(
sections = cross_sections(
shape_pts, points, angles, twist = twist, scale = scale
),
);
polysections(
sections,
triangles = triangles
);
// testing hook
test_sphere_spiral_extrude(sections);
}
// override it to test
module test_sphere_spiral_extrude(sections) {
}