scirocco287 Posted January 4, 2022 Share Posted January 4, 2022 (edited) Hallo zusammen! ich habe nach dem Vorbild von TitoVerano's Streckenbegrenzungen eine modifizierte Version erstellt, die ohne Verschraubungen auskommt. Die Teile werden mit gezahnten Pins ineinander gesteckt und können so in 15° Schritten gedreht werden. Please log in to see the images Please log in to see the images Das ganze ist in OpenScad entstanden, hier der Code: $fn=64; d=13; h=20; dpin=d-4.75; dhole=d-4; straight(45,true,true); module straight(l,createPin,createHole){ if(createPin){ block(l); pin(dpin); } translate([d+1,0,h/2+0.5]){ if(createHole){ difference(){ block(l); translate([l-d,0,0])pin(dhole); } }else{ block(l-d-1); } } translate([d+1,0,2])block(l-d-1); } module block(l){ hull(){ cylinder(h=(h-1)/2,d=d); translate([l-d,0,0])cylinder(h=(h-1)/2,d=d); } } module pin(d) { for(a=[0:15:359]){ hull(){ cylinder(h=h,d=2); rotate([0,0,a])translate([d/2,0,0])cylinder(h=h,d=0.5); } } } Edited January 4, 2022 by scirocco287 1 Quote Link to comment Share on other sites More sharing options...
Chris1337 Posted January 17, 2022 Share Posted January 17, 2022 Gibts hierzu auch was zum Downloaden? Quote Link to comment Share on other sites More sharing options...
scirocco287 Posted January 17, 2022 Author Share Posted January 17, 2022 vor einer Stunde schrieb Chris1337: Gibts hierzu auch was zum Downloaden? ich hab die STL Dateien hochgeladen, müssen nur noch freigeschaltet werden 1 Quote Link to comment Share on other sites More sharing options...
Chris1337 Posted January 17, 2022 Share Posted January 17, 2022 Cool, danke. Wie groß sind die Teile im Vergleich zu den original Sturmkind Begrenzungen? Quote Link to comment Share on other sites More sharing options...
Darkman_RS Posted January 17, 2022 Share Posted January 17, 2022 vor einer Stunde schrieb scirocco287: ich hab die STL Dateien hochgeladen, müssen nur noch freigeschaltet werden Erledigt, danke fürs teilen 🤙👍 Druckst du die mit einem Resin oder FDM Drucker? Quote Link to comment Share on other sites More sharing options...
scirocco287 Posted January 17, 2022 Author Share Posted January 17, 2022 vor 54 Minuten schrieb Chris1337: Cool, danke. Wie groß sind die Teile im Vergleich zu den original Sturmkind Begrenzungen? die sind 45 mm lang + 15 mm für die Stufe, 20 hoch und 15 tief. vor 39 Minuten schrieb Darkman_RS: Erledigt, danke fürs teilen 🤙👍 Druckst du die mit einem Resin oder FDM Drucker? FDM, ein Prusa i3 MK3 für die Teile reicht 0.3mm Draft und 15% Infill. Ich arbeite gerade an einer Garage mit Rolltor, mal sehen, ob der Drucker das schafft... 2 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.