23 lines
442 B
OpenSCAD
23 lines
442 B
OpenSCAD
$fn = 32;
|
|
|
|
$width = 15.2;
|
|
$length = $width;
|
|
$height = 0.4;
|
|
module pin(){
|
|
cylinder(h=$height+1, r=1, center=true);
|
|
}
|
|
difference(){
|
|
cube([$width,$length, $height], center=true);
|
|
cylinder(h=$height+1, r=2.522, center=true);
|
|
translate([0,5.9,0])
|
|
pin();
|
|
translate([5,3.8,0])
|
|
pin();
|
|
translate([-5,3.8,0])
|
|
pin();
|
|
translate([-5,-5.15,0])
|
|
pin();
|
|
translate([5,-5.15,0])
|
|
pin();
|
|
}
|
|
|