added missing variable values

This commit is contained in:
tessaK9 2026-03-08 21:04:03 +01:00
commit cabdb3f800
2 changed files with 6 additions and 3 deletions

View file

@ -40,4 +40,4 @@ module dogear_headband(rightear = "flop", leftear = "flop", size=SIZE, thickness
};
}
dogear_headband(rightear = "nflop");
dogear_headband(rightear = "nflop");

View file

@ -1,4 +1,7 @@
include <globals.scad>
RAKE_DEPTH=1;
RAKE_WIDTH=1;
RAKE_STRETCH=1;
RAKE_CHAMFER=0.5;
module partial_ring(part, radius, thickness, height) {
rotate(180-180*part, [0, 0, 1])
@ -15,7 +18,7 @@ module partial_ring(part, radius, thickness, height) {
}
}
module headband(size=SIZE, height=HEIGHT, thickness=THICKNESS, part=PART, stretch_len=STRETCH_LEN, tip_len=TIP_LEN, tip_bend=TIP_BEND, rake_depth=RAKE_DEPTH, rake_width=RAKE_WIDTH, rake_stretch=RAKE_STRETCH, rake_chamfer=RAKE_CHAMFER, with_rake=true) {
module headband(size, height, thickness, part, stretch_len, tip_len, tip_bend, rake_depth = RAKE_DEPTH, rake_width = RAKE_WIDTH, rake_stretch = RAKE_STRETCH, rake_chamfer = RAKE_CHAMFER, with_rake=true) {
union() {
union() {
color("purple")