made chamfer smaller to give it a wider base to print on

This commit is contained in:
tessaK9 2026-03-23 16:47:02 +01:00
commit d9446e0cae
6 changed files with 22 additions and 22 deletions

View file

@ -3,26 +3,26 @@ use <bezier_extrusion.scad>;
module headband(thickness, height){
rake_length = 3;
shape_band = [[thickness/2,height/2-0.5],
[thickness/2,-height/2+0.5],
[thickness/2-0.5,-height/2],
[-thickness/2+0.5,-height/2],
[-thickness/2,-height/2+0.5],
[-thickness/2,height/2-0.5],
[-thickness/2+0.5,height/2],
[thickness/2-0.5,height/2]];
shape_band = [[thickness/2,height/2-0.4],
[thickness/2,-height/2+0.4],
[thickness/2-0.4,-height/2],
[-thickness/2+0.4,-height/2],
[-thickness/2,-height/2+0.4],
[-thickness/2,height/2-0.4],
[-thickness/2+0.4,height/2],
[thickness/2-0.4,height/2]];
shape_rake = [[0,-height/2],
[0,height/2],
[rake_length,height/2-2],
[rake_length,-height/2+2]];
shape_halfband = [[thickness/2,height/2-0.5],
[thickness/2,-height/2+0.5],
[thickness/2-0.5,-height/2],
shape_halfband = [[thickness/2,height/2-0.4],
[thickness/2,-height/2+0.4],
[thickness/2-0.4,-height/2],
[0,-height/2],
[0,height/2],
[thickness/2-0.5,height/2]];
[thickness/2-0.4,height/2]];
ctrl_band = [[21,0],[77,56],[56,126],[0,126]];
ctrl_end = [[21,0],[20,-1],[18,-4],[17,-8]];