separated catears into their own file, renamed dogear_headband to dogears, slightly changed dogear to fit new headband, removed old headband

This commit is contained in:
tessaK9 2026-03-12 13:08:21 +01:00
commit 2d143d6a56
6 changed files with 152 additions and 259 deletions

24
dogears.scad Normal file
View file

@ -0,0 +1,24 @@
use <headband.scad>;
use <dogear.scad>;
thickness = 2.5;
module dogears(rightear = "flop", leftear = "flop"){
union() {
translate([54,96,-3]){
rotate(75, [0,0,1]){
dogear(flopness = leftear);
}
}
mirror([1,0,0]){
translate([54,96,-3]){
rotate(75, [0,0,1]){
dogear(flopness = rightear);
}
}
}
headband(thickness = thickness, height = 6);
}
}
dogears(rightear = "lflop");