Vanessa Barrios- DobleFor

De Casiopea
Vanessa Barrios-DobleFor



TítuloVanessa Barrios-DobleFor
Tipo de ProyectoProyecto de Curso
AsignaturaImagen Escrita,
Del CursoImagen Escrita,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Vanessa Barrios
ProfesorHerbert Spencer

void setup (){

size(500,500);
background(color(#207F89));


}

void draw (){

for (int x=1; x<=480; x = x+=10 ){
for (int y=1; y<=480; y = y+=5 ){
    fill(random(1,255),random(1,255),random(250,255));
  ellipse(x+(random(-5,50)), y+0, width+5, height+5);
  stroke(color(#122D52));
}
}

saveFrame("dobleforvane.jpg"); }