Projekt neu angelegt

This commit is contained in:
2022-01-16 14:35:12 +01:00
commit 26e96040e0
3 changed files with 32 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
wa.stl

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Weichenantrieb-Atrappe
für Modellbahn

28
wa.scad Normal file
View File

@@ -0,0 +1,28 @@
module kasten(){
b=8;
l=10;
h=4;
d1=2;
d2=1.5;
difference(){
hull(){
translate([-(b-d1)/2,0,0])cube([b-d1,l,h],translate);
translate([-b/2,0,0])cube([b,l,h-d2],translate);
}
schwelle();
}
translate([0,0.8,h])cube([b-d1,0.4,0.1],true);
translate([0,2.9,h])cube([b-d1,0.4,0.1],true);
translate([0,5,h])cube([b-d1,0.4,0.1],true);
translate([0,7.1,h])cube([b-d1,0.4,0.1],true);
translate([0,9.2,h])cube([b-d1,0.4,0.1],true);
}
module schwelle(){
b=6;
l=30;
h=2.5;
translate([-b/2,1,0])cube([b,l,h]);
}
kasten();