restructured repo
This commit is contained in:
parent
76a3aa2915
commit
c6d87bf6b9
11 changed files with 14 additions and 14 deletions
26
dogears.scad
26
dogears.scad
|
|
@ -1,26 +0,0 @@
|
|||
use <headband.scad>;
|
||||
use <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