first commit of dogears

This commit is contained in:
tessaK9 2026-04-02 12:19:44 +02:00
commit 615277344f
10 changed files with 711 additions and 0 deletions

26
scad/dogears.scad Normal file
View file

@ -0,0 +1,26 @@
use <base/headband.scad>;
use <base/dogear.scad>;
thickness = 2.7;
//options for ears include low flopness ("lflop"), regular flopness ("flop"), high flopness ("vflop"), very high flopness ("vvflop"), very very high flopness ("vvvflop")
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);
}
}
}
//height needs to be 6 since the dogears are 6 high
headband(thickness = thickness, height = 6);
}
}
dogears();