Alyssa Ruts: Tarea 6
De Casiopea
Título | |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 6 |
Asignatura | Taller Inicial Común 1ª y 2ª Etapa, |
Del Curso | Imagen Escrita 2012, |
Carreras | 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) | Alyssa Ruts |
Profesor | Herbert 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); } void keyPressed () { if(key=='p'){ saveFrame("circuloscolores-2.jpg"); // grabar imagen } }