add tower bases parts
This commit is contained in:
parent
a2ae4bd9f6
commit
ae77c0bbb9
10
funkturm/cap.scad
Normal file
10
funkturm/cap.scad
Normal file
|
@ -0,0 +1,10 @@
|
|||
$fn=100;
|
||||
|
||||
difference(){
|
||||
union(){
|
||||
translate([0,0,10])cylinder(h=20,d=54.4,center=true);
|
||||
translate([0,0,-2.5])cylinder(h=5,d=59,center=true);
|
||||
translate([0,0,-5-(2/2)])cylinder(h=2,d1=59-4,d2=59,center=true);
|
||||
}
|
||||
translate([0,0,(25/2)-4])cylinder(h=25,d=54-4,center=true);
|
||||
}
|
17
funkturm/sockel.scad
Normal file
17
funkturm/sockel.scad
Normal file
|
@ -0,0 +1,17 @@
|
|||
$fn=100;
|
||||
module conbox(high,base,coner){
|
||||
minkowski(){
|
||||
cube([base-coner,base-coner,high-10]);
|
||||
cylinder(h=10,d=coner);
|
||||
}
|
||||
}
|
||||
difference(){
|
||||
union(){
|
||||
translate([-((90)/2),-((90)/2),0]){
|
||||
translate([-4,-4,0])conbox(11,90+(4*2),5);
|
||||
conbox(150,90,5);
|
||||
};
|
||||
}
|
||||
translate([0,0,-2])cylinder(h=2000,d=59);
|
||||
}
|
||||
|
Loading…
Reference in a new issue