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 Sphere Spring (Spherical Spiral) por AlbertRenshaw no Thingiverse

Descrição

Made in OpenScad using sin and cos:


$fn=7;

pi = 3.14;

k = 57.2;//1 radian

iterations = 400; turns = 10; c = turns*2; r = 1.0;//radius 1 (unit sphere)

ti = 0; tf = pi*k; td = tf/iterations;//step

for (t=[ti:td:tf-td]) {

//echo(floor(t/td));

t1 = t;
t2 = t+td;

x1 = r * sin(t1) * cos(c*t1);
y1 = r * sin(t1) * sin(c*t1);
z1 = r * cos(t1);

x2 = r * sin(t2) * cos(c*t2);
y2 = r * sin(t2) * sin(c*t2);
z2 = r * cos(t2);

hull() {
    
    translate([x1,y1,z1]) {
        sphere(r=0.05, $fa = .1, $fs = .1);
    }
    
    translate([x2,y2,z2]) {
        sphere(r=0.05, $fa = .1, $fs = .1);
    }

}

}

Thingiverse

Sphere Spring (Spherical Spiral)

11
Curtidas
0
Downloads
21
Coleções
Tags
sphere spherical spiral spring
Licença Creative Commons - Attribution
Arquivos (1)
sphere_spring.stl 2.3 MB
Ver no Thingiverse (abre em nova aba)

Gostou deste modelo? Crie uma conta grátis para salvar seus favoritos e voltar a eles depois.

Criar conta