Initial code
This commit is contained in:
parent
7d7a066d61
commit
dd867a7b67
1 changed files with 34 additions and 0 deletions
34
pcb-jig.scad
Normal file
34
pcb-jig.scad
Normal file
|
@ -0,0 +1,34 @@
|
|||
module pcb_jig(width, height) {
|
||||
difference() {
|
||||
color("green")
|
||||
translate([0, 0, 5])
|
||||
cube([width + 50, height + 15, 10], center = true);
|
||||
|
||||
color("red")
|
||||
translate([0, 0, 10])
|
||||
cube([width + 1, height + 1, 5], center = true);
|
||||
|
||||
color("blue")
|
||||
translate([0, height / 2 + 5, 2.5])
|
||||
cube([15, 20, 20], center = true);
|
||||
|
||||
color("blue")
|
||||
translate([0, -height / 2 - 5, 2.5])
|
||||
cube([15, 20, 20], center = true);
|
||||
|
||||
translate([2.5, 0, -1]) {
|
||||
translate([width / 2 + 10, 0, 0]) {
|
||||
translate([0, height / 2 - 3.25, 0])
|
||||
cylinder(h = 20, d = 6.5);
|
||||
translate([0, -height / 2 + 3.25, 0])
|
||||
cylinder(h = 20, d = 6.5);
|
||||
}
|
||||
translate([-width / 2 - 15, 0, 0]) {
|
||||
translate([0, height / 2 - 3.25, 0])
|
||||
cylinder(h = 20, d = 6.5);
|
||||
translate([0, -height / 2 + 3.25, 0])
|
||||
cylinder(h = 20, d = 6.5);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue