use ; use ; 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();