fischertechnik-box-foundation

OpenSCAD sorting box construction foundation for Fischertechnik parts

View the Project on GitHub proggi64/fischertechnik-box-foundation

FrameStandardBlock

Grundbausteine und Winkelträger, die auf der 15x15-Seite ohne Zapfen stehen.

Es können Anzahlen in x- und y-Richtung angegeben werden, die nebeneinander in denselben Rahmen gestellt werden.

FrameStandardBlock

3D-Druck getestet

Use

use <../Elements/FrameStandardBlock.scad>

Syntax

FrameStandardBlock(
    columns=1, 
    rows=1, 
    height=10);

space = getFrameStandardBlockSpace()
    columns=1, 
    rows=1);
Parameter Typ Beschreibung
columns Integer Anzahl der Bausteine nebeneinander (X-Richtung).
rows Integer Anzahl der Bausteine untereinander (Y-Richtung).
height Decimal Höhe der Wände in mm.

Rückgabewert getFrameStandardBlockSpace

Äußere Fläche des Rahmens als [x,y]-Liste.

Beispiel

/Test/Elements/TestFrameStandardBlock.scad

use <../../Base/Placement.scad>
use <../../Elements/FrameStandardBlock.scad>

include <../../Base/PlacementOptions.scad>

FrameStandardBlock();

Place(20, 0, getFrameStandardBlockSpace(2), rotation=Rotate90)
    FrameStandardBlock(2);

Place(40, 0)
    FrameStandardBlock(2);

Place(80, 0, getFrameStandardBlockSpace(4), rotation=Rotate270)
    FrameStandardBlock(4);

Place(0, 80, getFrameStandardBlockSpace(rows=2), rotation=Rotate90)
    FrameStandardBlock(rows=2);

Place(50, 80)
    FrameStandardBlock(rows=3);

Place(70, 80, getFrameStandardBlockSpace(2,4), rotation=Rotate270)
    FrameStandardBlock(2,4);

FrameStandardBlock