First Commit

This commit is contained in:
Thomas Cole 2022-12-20 10:49:32 -05:00
parent 2366f0da76
commit 1fdf0daaa7
30 changed files with 61 additions and 0 deletions

Binary file not shown.

BIN
New Parts/feet.stl Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

6
Original Files/README.md Normal file
View File

@ -0,0 +1,6 @@
# The original files are a work of John Folger
The files are included in this repo for archival purposes.
Here is a link to the original files.
https://drive.google.com/drive/folders/0B9b1NbuMK524fkcyeGpvMDdyTndVNWhxRFhtYWtLYmhPVkhZOWxMbGNGckc4VTA4Z0tfSkU?resourcekey=0-GrAbmWvLZHdqzdOtVmh-5Q

View File

@ -0,0 +1,53 @@
/*
***INFO***
Author: slurked
Email: slurked@starlid.com
Version: 1.0
License: Creative Commons Zero (https://creativecommons.org/publicdomain/zero/1.0)
***TO INSTALL***
To use, place this file in your OpenSCAD libraries directory. If you don't know where this is on your computer, go to the file menu and select "Show Library Folder" or check https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Libraries
***USAGE EXAMPLE***
This generates a 75mm tall 2020 extrusion:
use <2020_profile.scad>
linear_extrude(height=75) 2020_profile();
***NOTES***
Please be aware that there are many different variations in real world aluminum extrusions. Differences in tolerances, minor details like corner bevels, and even major variations in the interior cross section are common. This particular model is very basic with square edges.
This is a trivial item, so I have elected to release it into the public domain via the Creative Commons Zero license. No credit, attribution, or permission is needed from me to use this work. Although I would still enjoy hearing about what you put it to use for!
*/
module 2020_profile(){
difference(){
square([20,20],center=true);
square([17,17],center=true);
square([40,5.26],center=true);
rotate([0,0,90]) square([40,5.26],center=true);
}
difference(){
union(){
square([7.32,7.32],center=true);
rotate([0,0,45]) square([1.5,25],center=true);
rotate([0,0,-45]) square([1.5,25],center=true);
}
circle(d=5,$fn=16);
}
translate([7.9975,7.9975,0]) square([4.005,4.005],center=true);
translate([-7.9975,7.9975,0]) square([4.005,4.005],center=true);
translate([7.9975,-7.9975,0]) square([4.005,4.005],center=true);
translate([-7.9975,-7.9975,0]) square([4.005,4.005],center=true);
}

2
Scad Files/PSUMount.scad Normal file
View File

@ -0,0 +1,2 @@
use <2020_profile.scad>;
linear_extrude(height=75) 2020_profile();