adding chanals for the wires
This commit is contained in:
parent
47fa8f6415
commit
0cd265e8d6
|
@ -55,9 +55,31 @@ module downshell(){
|
||||||
// Magnet
|
// Magnet
|
||||||
translate([0,0,-3])cylinder(d=5.1,h=2,cernter=true);
|
translate([0,0,-3])cylinder(d=5.1,h=2,cernter=true);
|
||||||
scale([1,1,0.2])sphere(d=11);
|
scale([1,1,0.2])sphere(d=11);
|
||||||
|
difference(){
|
||||||
|
union(){
|
||||||
|
translate([0,0,0.1]){
|
||||||
|
rotate([0,100,0]) wire();
|
||||||
|
rotate([0,100,180]) wire();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
union(){
|
||||||
|
translate([0,-5,0])cube([10,10,10]);
|
||||||
|
rotate([0,0,180])translate([0,-5,0])cube([10,10,10]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module wire(){
|
||||||
|
union(){
|
||||||
|
for ( i = [-1:1]){
|
||||||
|
translate([0,i*1.5,0])cylinder(h = 20, d=1.81, center=true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// base for magnets
|
// base for magnets
|
||||||
downshell();
|
downshell();
|
||||||
|
|
Loading…
Reference in a new issue