Fixed deprecated child() reference. Also altered helix() in screw.scad to use all children, not just the first child.

This commit is contained in:
Doug Hawkins 2020-03-25 12:36:24 -06:00
parent b21ef47a55
commit 71837805b3

View file

@ -20,7 +20,7 @@ inner_diameter: thickness of the shaft
module helix(pitch, length, slices=500){
rotations = length/pitch;
linear_extrude(height=length, center=false, convexity=10, twist=360*rotations, slices=slices, $fn=100)
child(0);
children();
}
module auger(pitch, length, outside_radius, inner_radius, taper_ratio = 0.25) {