Green Ball
¿Quieres Jugar con la Green Ball? Crea tu propio Arte. Accede al Área de Dibujo
Do you want play with the Green Ball? Create your own Art. Access the Drawing Area.
CÓDIGO
//(C)Sergio Salazar Latorre
//Green Ball
let l = 1000
let x=0
let y=0
let z=0
let rx=30
let ry=80
let rz=130
function setup() {
createCanvas(l,l,WEBGL);
angleMode(DEGREES)
background(0)
}
function draw() {
orbitControl()
fill(25,255,132,100)
strokeWeight(0.3)
stroke(225,0,255-132,50)
push()
x=sin(frameCount*2)*rx
y=sin(frameCount*3)*ry
z=sin(frameCount*0.5)*rz*5
translate(x,y,z)
sphere(rx)
noFill()
stroke(255,128,2,15)
sphere(ry)
stroke(0,128,128,6)
sphere(rz)
pop()
}

Comentarios
Publicar un comentario