1
0
Fork 0
polymer-strain-amp/component models/AS2E-2M-10-Z.scad

33 lines
656 B
OpenSCAD
Raw Normal View History

2017-04-04 11:21:30 -04:00
module Body () {
color("Silver")
difference () {
cube([9.5, 5, 8], center=true);
#translate([0, 0, 4-0.5])
cube([5.4, 2.2, 1], center=true);
}
}
module Pin() {
translate([0,0,-4-3.3/2])
color ("Gold")
cube([0.6, 0.3, 3.3], center=true);
}
Body();
// Row 1
translate([0, -1.27, 0]) {
Pin();
translate([2.54, 0, 0])
Pin();
translate([-2.54, 0, 0])
Pin();
}
translate([0, 1.27, 0]) {
Pin();
translate([2.54, 0, 0])
Pin();
translate([-2.54, 0, 0])
Pin();
}