Valentina Olivares tarea 6

De Casiopea



TítuloValentina Olivares tarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6, processing
Del CursoImagen Escrita 2012,
CarrerasArquitectura, Diseñ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)Valentina Olivares


float r; float g; float b;


float diam; float x; float y;

void setup() {

 size(500,500);
 background(230);
 smooth();    

}

void draw() {

 r = random(250);
 g = random(24);
 b = random(100);
 diam = random(100);
 x = random(width);
 y = random(height);
 

 noStroke();
 fill(r,g,b);
 ellipse(x,y,diam,diam);

}