OpenSCAD sorting box construction foundation for Fischertechnik parts
View the Project on GitHub proggi64/fischertechnik-box-foundation
Bausteine mit Zapfen nach unten und Rastleuchtkappen.
Der Rahmen hat am Boden zwei Stege, so dass der Zapfen dazwischen Platz hat. Rastleuchtkappen passen in allen Ausrichtungen auf die Stege.
3D-Druck getestet
use <../Elements/FrameBlockWithStud.scad>
FrameBlockWithStud(
count=1,
height=8);
space = getFrameBlockWithStudSpace()
count=1);
Parameter | Typ | Beschreibung |
---|---|---|
count | Integer | Anzahl der Bausteine nebeneinander (X-Richtung). |
height | Decimal | Höhe der Wände in mm. |
Äußere Fläche des Rahmens als [x,y]-Liste.
/Test/Elements/TestFrameBlockWithStud.scad
use <../../Base/Placement.scad>
use <../../Elements/FrameBlockWithStud.scad>
include <../../Base/PlacementOptions.scad>
FrameBlockWithStud();
Place(20, 0, elementSpace=getFrameBlockWithStudSpace(2), rotation=Rotate90)
FrameBlockWithStud(2);
Place(40, 0, elementSpace=getFrameBlockWithStudSpace(8), rotation=Rotate90)
FrameBlockWithStud(8);