parent
341326af20
commit
a6d09a60cc
@ -0,0 +1,5 @@ |
||||
_autosave* |
||||
*.bak |
||||
export |
||||
*.kicad_pcb-bak |
||||
*rescue.lib |
@ -0,0 +1,34 @@ |
||||
PCB_THICKNESS = 1.6; |
||||
EDGE_LENGTH = 54; |
||||
WRAPAROUND = 2; |
||||
|
||||
module thingie() { |
||||
translate([1, 0, 0]) { |
||||
difference() { |
||||
cube([ |
||||
EDGE_LENGTH + 2 * WRAPAROUND, |
||||
EDGE_LENGTH + 2 * WRAPAROUND*2 + PCB_THICKNESS, |
||||
9]); |
||||
translate([EDGE_LENGTH+17+5+2, EDGE_LENGTH+5+6]) { |
||||
cylinder(10, EDGE_LENGTH+5, EDGE_LENGTH+5, $fn=100); |
||||
}; |
||||
|
||||
translate([-142,71]) { |
||||
cylinder(10, 155, 155, $fn=100); |
||||
}; |
||||
|
||||
|
||||
translate([WRAPAROUND, WRAPAROUND*3,1]) { |
||||
translate([13, PCB_THICKNESS,0]) { |
||||
cube([PCB_THICKNESS,EDGE_LENGTH,20]); |
||||
} |
||||
cube([EDGE_LENGTH,PCB_THICKNESS,20]); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
thingie(); |
||||
mirror([1,0,0]) { |
||||
thingie(); |
||||
} |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue