Browse Source

First commit

master
Maximilian Stiefel 5 years ago
commit
c397de1d03
  1. 1
      .gitignore
  2. 0
      README.md
  3. 27
      rod_repair/rod_repair.scad
  4. 7
      torch_repair/torch_repair.scad

1
.gitignore

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

0
README.md

27
rod_repair/rod_repair.scad

@ -0,0 +1,27 @@
h=145;
r1=5/2;
r2=4/2;
th=1.5;
ct_z=5;
ct_xy=r1*4;
difference ()
{
difference ()
{
difference ()
{
cylinder(h, r1+th, r2+th, center = true);
cylinder(h+1, r1, r2, center = true);
}
translate([0, r2+th, 0])
cube([8*th, 3*th, h+1], center=true);
}
union(){
translate([0,ct_xy/2,+h/2-5])
cube([ct_xy,ct_xy,ct_z], center=true);
translate([0,ct_xy/2,0])
cube([ct_xy,ct_xy,ct_z], center=true);
translate([0,ct_xy/2,-h/2+5])
cube([ct_xy,ct_xy,ct_z], center=true);
}
}

7
torch_repair/torch_repair.scad

@ -0,0 +1,7 @@
difference()
{
cylinder(h=23, r=30/2, center=true, $fn=50);
translate([0,0,3.01])
cylinder(h=23, r1=24.5/2, r2=25.5/2, center=true, $fn=50);
cylinder(h=100, r=2.5, center=true, $fn=50);
}
Loading…
Cancel
Save