1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-07 07:56:30 +02:00

Added the implementation

This commit is contained in:
Alex Verschoot
2025-07-12 15:04:03 +02:00
parent a785ae1050
commit bfaa48dc7c

View File

@@ -17,11 +17,22 @@
// If not, see <https://www.gnu.org/licenses/>.
//
// sdia nd nt nnt nsx nty1 nty2
//sh is horizontal positions of the screw holes, expressed in %/100 of the nut arm
//sv is vertical positions of the screw holes, expressed in %/100 of the nut arm
// sdia nd nt nnt nsx nty1 nty2 sh sv
corner_3d_connector_2020 = ["corner_3d_connector_2020", 20, 5, 13, 2.5, 4, 6, 3.5,5, 15.5,10, 6, [0.5], [0.5]];
corner_3d_connector_3030 = ["corner_3d_connector_3030", 29.6,6.2, 22, 2.5, 6, 8, 4.2,6.2,24.9,16, 11, [0.25,0.75], [0.65]];
corner_3d_connector_4040 = ["corner_3d_connector_4040", 40,9.5, 25, 2.5, 6, 8, 5, 9.5,34.0,19.5, 14, [0.25,0.75], [0.65]];
corner_3d_connectors = [corner_3d_connector_2020,corner_3d_connector_3030,corner_3d_connector_4040];
use <corner_3d_connector.scad>
use <corner_3d_connector.scad>
corner_3d_connector(corner_3d_connector_2020);
translate([50,0,0])
corner_3d_connector(corner_3d_connector_3030);
translate([120,0,0])
corner_3d_connector(corner_3d_connector_4040);