Ir para conteúdo
3DFinder
Entrar

Você está no 3DFinder

Buscamos em Thingiverse, MakerWorld e Printables ao mesmo tempo para te dar o melhor de cada uma.

Buscar mais como este
Modelo 3D nested cubes scad por Zoon1234micron no Thingiverse

Descrição

Some nested cubes based on some web art. includes scad and stl files.

only advanced makers can have some idea of getting them into filament, you may have to make wth variable higher.

here is the final scad code, set the rotation to the number you want, change the width, use more cubes, and after is the first version:


wth = 1.5;//width of bars
rtn = 90/17;//can be used as rotation
xt = 2;//spacing
for(h = [1 : 23])
{
rotate([h*4,0,h*4])
difference(){
wth = 1.5+3/h;//solidify size mod
cube(size = [xt*h,xt*h,xt*h], center = true);

     cube(size = [xt*h,xt*h-wth,xt*h-wth], center = true);
     cube(size = [xt*h-wth,xt*h,xt*h-wth], center = true);
     cube(size = [xt*h-wth,xt*h-wth,xt*h], center = true);
}
}
___________________________

easier version:

  wth = 1.1;//width of bars
 for(h = [0 : 17])
  { 
      rotate([h*5,0,0])
   difference(){
 
      cube(size = [h,h,h], center = true);
 
     cube(size = [h,h-wth,h-wth], center = true);
     cube(size = [h-wth,h,h-wth], center = true);
     cube(size = [h-wth,h-wth,h], center = true);
 
    } 
  }
Thingiverse

nested cubes scad

133
Curtidas
0
Downloads
125
Coleções
Licença Creative Commons - Attribution
Arquivos (12)
10_nested_cubes_rotated_.stl 127.3 KB
17_nested_cubes_rotated.stl 590.9 KB
17_nested_cubes_straight.stl 225.8 KB
10_nested_cubes_rotated_2.stl 409.8 KB
alot_nested_cubes_rotation_iteration_times_2.stl 643.5 KB
10_nested_cubes_nxn_rotation_1_axis.stl 631.2 KB
alot_nested_cubes_rotation_iteration_times_2.stl 643.5 KB
10_nested_cubes_nxn_rotation_another.stl 678.3 KB
10_nested_cubes_nxn_rotation_1_axis.stl 631.2 KB
one_peice_maybe_printable.stl 827.5 KB
nonsense_boxes.stl 2.4 MB
nested_cubes_graded_dimensions.stl 671.4 KB
Ver no Thingiverse (abre em nova aba)