From 38e1d9f3360449e37bec74f9f8baf63a65d081c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mario=20H=C3=B6llein?= Date: Fri, 5 Jun 2020 12:40:06 +0200 Subject: [PATCH] =?utf8?q?Nutenstein=20f=C3=BCr=20M5=20oder=20M6=20Mutter?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Nutsteine/T-Nutenstein_hoch_Mx.scad | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Nutsteine/T-Nutenstein_hoch_Mx.scad diff --git a/Nutsteine/T-Nutenstein_hoch_Mx.scad b/Nutsteine/T-Nutenstein_hoch_Mx.scad new file mode 100644 index 0000000..8671701 --- /dev/null +++ b/Nutsteine/T-Nutenstein_hoch_Mx.scad @@ -0,0 +1,26 @@ +//M5 - 5, M6 - 6 +Mx=6; +difference(){ + corpus(); + if (Mx==5){ + translate([0,0,-20])cylinder(d=4.9,h=50,$fn=50); //Bohrung fuer M5-Schraube + translate([0,0,-5.3])rotate([0,0,30])cylinder(d=9.2,h=3.4,$fn=6); //Sechskant Loch fuer M5-Mutter + } + else{ + translate([0,0,-20])cylinder(d=5.6,h=50,$fn=50); //Bohrung fuer M&-Schraube + translate([0,0,-5.6])rotate([0,0,30])cylinder(d=11.8,h=5,$fn=6); //Sechskant Loch fuer M6-Mutter + } + +} +//T-Nutenschuh 16.6mm lang, ohne Bohrung +module corpus(){ + //obere Fuehrung + translate([0,0,(4-1.7)/2])cube([8,16.6,4],center=true); + //Klemmflaeche + translate([0,0,-1.7])cube([16,16.6,2],center=true); + //Profil unten + translate([0,0,-2.7]) hull(){ + cube([16,16.6,0.01],center=true); + translate([0,0,-2.5])cube([11,16.6,0.01],center=true); + } +} \ No newline at end of file -- 2.43.0