catears-v2/dogears.scad

24 lines
No EOL
454 B
OpenSCAD

use <headband.scad>;
use <dogear.scad>;
thickness = 2.7;
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");