prototype 2

This commit is contained in:
Patrick Opheys
2026-05-08 22:17:50 +02:00
parent 8b558315c0
commit eed9a0bd94
2 changed files with 7 additions and 5 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
*.stl
*.bgcode

View File

@@ -1,12 +1,13 @@
$fn = 50;
height = 20;
height = 10;
durchmesser = 45;
thickness = 10;
difference() {
cylinder(height, 50, 50);
cylinder(height, 40, 40);
translate([30,0,height/2]) cube([50,20,height], center = true);
cylinder(height, (durchmesser+thickness)/2, (durchmesser+thickness)/2);
cylinder(height, durchmesser/2, durchmesser/2);
translate([30,0,height/2]) cube([50,30,height], center = true);
}