separated catears into their own file, renamed dogear_headband to dogears, slightly changed dogear to fit new headband, removed old headband
This commit is contained in:
parent
b5a30db507
commit
2d143d6a56
6 changed files with 152 additions and 259 deletions
24
dogears.scad
Normal file
24
dogears.scad
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
use <headband.scad>;
|
||||
use <dogear.scad>;
|
||||
|
||||
thickness = 2.5;
|
||||
|
||||
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");
|
||||
Loading…
Add table
Add a link
Reference in a new issue