Alyssa Ruts: Tarea 6

De Casiopea



Título
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
Del CursoImagen Escrita 2012,
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)Alyssa Ruts
ProfesorHelbert Spencer

// Basado en ejemplo de un Tutorial.

int col; void setup(){ size(400,400); background(0); colorMode(HSB); col = 0; } void draw(){ col = (col+1) % 256; fill(col,255,255,100); ellipse(random(mouseX-30, mouseX+30) ,random(mouseY-30,mouseY+30), 20 , 20 ); } void mousePressed(){ background(0); }