Made individual parts files.

This commit is contained in:
2021-10-26 20:59:20 -04:00
parent 59ca009293
commit ecf0220f6f
8 changed files with 140 additions and 0 deletions

17
part_form.scad Normal file
View File

@@ -0,0 +1,17 @@
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);
mold_wall(PlateDiameter, pt, BallDiameter);