first commit of dogears
This commit is contained in:
commit
615277344f
10 changed files with 711 additions and 0 deletions
26
scad/dogears.scad
Normal file
26
scad/dogears.scad
Normal 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();
|
||||
Loading…
Add table
Add a link
Reference in a new issue