It's a rainy day outside (at least that's my excuse) so I've been amusing myself with Open SCAD.
There was a post recently about 3D printed T-Slot fillers. A nice simple thing to draw in 3D CAD (just sketch & extrude he says with new found confidence) but I thought I'd do it in SCAD (a much better use of coffee-time than Suduko! )
Here is the script:
//
//
// T-Slot Filler – IanT
//
L = 75; // T-Slot Length
HR = 2; // Hole Radius
BW = 14; // Bottom (of Slot) Width
TW = 8; // Top (of Slot) Width
BH = 4; // Bottom (of Slot) Height
TH = 9; // Top (of Slot) Height
//
//
difference () {
union () {
cube ([L,BW,BH], center=false);
translate ([0,(BW/2-TW/2),0])
cube ([L,TW,TH]); }
translate ([L/2,BW/2,0])
cylinder (TH,HR,HR);
}
I've used arbitrary dimensions above, so just change the variables to what you need. I've not printed this myself (I think it might actually be quicker to just cut some wooden strips and glue them together?) but it should be fine.
You'll need to download Open SCAD and then just cut and paste the 'script' above into the Editor. For anyone not wanting to go "full-on" 3D CAD – Open SCAD can be learned in small steps and is pretty simple once you've got a few basics (it looks more complicated than it is) – and it also helps keep the little grey cells ticking over.
Regards,
IanT
Edited By IanT on 02/07/2020 17:18:16