Files
crystalballer/plate_balls.scad

20 lines
413 B
OpenSCAD
Raw Permalink Normal View History

2021-10-26 20:59:20 -04:00
use <Baller.scad>
// Config
BallDiameter = 65;
BallClearance = 2;
BallSealWidth = 2;
PlateLip = 2;
PlateDiameter = BallDiameter + 2*(BallClearance + BallSealWidth + PlateLip);
PlateThick = BallSealWidth/2 + 1;
//plate_full();
PlateSep = 0;
pd = PlateDiameter+PlateSep;
pt = PlateThick;
echo("PD=", pd);
translate([pd/2+2,0]) plate_top(thickness=pt);
translate([-(pd/2+2),0]) plate_mid(thickness=pt);