summaryrefslogtreecommitdiff
path: root/Regalmupfen.scad
blob: d4bd86117ffb7127d6aeb763d49e0996a69891e9 (plain)
1
2
3
4
5
6
7
8
Radius = 0.5;
Hoehe = 1.3;
Bohrung = 0.25;

difference() {
    cylinder(h = Hoehe, r = Radius, center = true, $fn = 100);
    rotate([0,90,0])cylinder(h = 4*Radius, r = Bohrung, center = true, $fn = 100);
}