This commit is contained in:
jazhawang
2022-09-18 11:13:08 -04:00
parent 070f97103b
commit 94c8c2116c
27 changed files with 261367 additions and 10156 deletions

View File

@ -1,29 +1,24 @@
include <../common.scad>
include <./screws.scad>
$fn=64;
eps=0.1;
slack = 0.5;
m3Diameter = 3.0;
m3Radius = m3Diameter/2.0;
m3ptr = m3Radius + slack;
module baseFrame() {
difference() {
cube(size=[200,200,4], center=true);
cube(size=[180,180,4], center=true);
}
translate(v=[90,90,0])
translate(v=[80,80,0])
cube(size=[20,20, 4],center=true);
translate(v=[-90,90,0])
translate(v=[-80,80,0])
cube(size=[20,20, 4],center=true);
translate(v=[90,-90,0])
translate(v=[80,-80,0])
cube(size=[20,20, 4],center=true);
translate(v=[-90,-90,0])
translate(v=[-80,-80,0])
cube(size=[20,20, 4],center=true);
}
@ -31,7 +26,7 @@ module lugBottom() {
difference() {
cube(size=[9.7,9.7,6], center=true);
translate(v=[1,1,0])
translate(v=[2,2,0])
cube(size=[9.1,9.1,5+1], center=true);
}
@ -63,16 +58,16 @@ module base() {
}
union() {
translate(v=[90,90,0])
translate(v=[80,80,0])
cylinder(h = 100, r = m3ptr, $fn=32, center=true);
translate(v=[-90,90,0])
translate(v=[-80,80,0])
cylinder(h = 100, r = m3ptr, $fn=32, center=true);
translate(v=[90,-90,0])
translate(v=[80,-80,0])
cylinder(h = 100, r = m3ptr, $fn=32, center=true);
translate(v=[-90,-90,0])
translate(v=[-80,-80,0])
cylinder(h = 100, r = m3ptr, $fn=32, center=true);
}
@ -81,6 +76,4 @@ module base() {
base();
*lugBottom();