adding chanals for the wires

This commit is contained in:
isa10110 2024-08-05 21:53:15 +02:00
parent 47fa8f6415
commit 0cd265e8d6

View file

@ -55,9 +55,31 @@ module downshell(){
// Magnet
translate([0,0,-3])cylinder(d=5.1,h=2,cernter=true);
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
downshell();