unified bezier_extrude_partial with bezier_extrude

This commit is contained in:
tessaK9 2026-03-13 23:42:04 +01:00
commit 0c97fa8e0a
2 changed files with 14 additions and 33 deletions

View file

@ -37,9 +37,9 @@ module headband(thickness, height){
}
mirror([1,0,0]) bezier_extrude(ctrl = ctrl_end, shape = shape_band, sections = 16);
translate([-17,-8]){
rotate_extrude(convexity = 10, $fn = 16) polygon(shape_halfband);
rotate_extrude(convexity = 10, $fn = 9) polygon(shape_halfband);
}
bezier_extrude_partial(ctrl = ctrl_rake, shape = shape_rake, merlon = 2, gap = 3, sections = 5*42+1 );
bezier_extrude(ctrl = ctrl_rake, shape = shape_rake, partial = true, merlon = 2, gap = 3, sections = 5*42+1 );
}
}