This commit is contained in:
Arndt Heuvel 2024-09-22 00:19:37 +02:00
parent f6c6d01982
commit 20d4294a93
6 changed files with 196487 additions and 1 deletions

196452
CE3S1P_Kugellagerung.gcode Normal file

File diff suppressed because it is too large Load diff

BIN
Kugellagerung.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

21
Kugellagerung.scad Normal file
View file

@ -0,0 +1,21 @@
$fn=200;
//cylinder(h=1, r= 40);
difference() {
cylinder(h=8, r= 33);
translate([0,0,-0.1])cylinder(h=8.2, r= 12);
translate([28,0,-0.1])cylinder(h=8.2, r= 2.5);
translate([-28,0,-0.1])cylinder(h=8.2, r= 2.5);
translate([23,14,-0.1])cylinder(h=8.2, r= 2.5);
translate([-23,14,-0.1])cylinder(h=8.2, r= 2.5);
// translate([15,24,-0.1])cylinder(h=8.2, r= 2.5);
// translate([-15,24,-0.1])cylinder(h=8.2, r= 2.5);
translate([23,-17,-0.1])cylinder(h=8.2, r= 2.5);
translate([-23,-17,-0.1])cylinder(h=8.2, r= 2.5);
translate([-45,22,-5])rotate([15,0,0])cube([90,50,20]);
translate([-45,-26-50,-1])cube([90,50,20]);
}
//translate([0,-30,-1])cube([30,30,30]);

BIN
Kugellagerung.stl Normal file

Binary file not shown.

View file

@ -1,3 +1,6 @@
# Kettensaege # Kettensaege
neuer Halter für Kugellager neuer Halter für Kugellager
## Kugellagerung.scad
![Kugellagerung.scad](./Kugellagerung.png "Kugellagerung.scad")

10
test.scad Normal file
View file

@ -0,0 +1,10 @@
minkowski() {
translate([0,0,7])difference() {
cylinder(h=10, r= 40);
translate([0,0,-1.5])cylinder(h=11, r= 18);
}
rotate([90,0,90]) cylinder(h=0.1,r=4);
rotate([0,90,90]) cylinder(h=0.1,r=4);
}