From bfaa48dc7c0303d359b52a4a122ea14b74b535e2 Mon Sep 17 00:00:00 2001 From: Alex Verschoot Date: Sat, 12 Jul 2025 15:04:03 +0200 Subject: [PATCH] Added the implementation --- vitamins/corner_3d_connectors.scad | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/vitamins/corner_3d_connectors.scad b/vitamins/corner_3d_connectors.scad index 8995301..df9153e 100644 --- a/vitamins/corner_3d_connectors.scad +++ b/vitamins/corner_3d_connectors.scad @@ -17,11 +17,22 @@ // If not, see . // -// 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 \ No newline at end of file +use + + +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); \ No newline at end of file