Camilo Escobar: Tarea 6

De Casiopea


Título
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
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)Camilo Escobar
ProfesorHerbert Spencer


// Realizado con ayuda y una base de una página de tutoriales para processing.

void setup(){
  size(500,500);
  background(255);
  fill(100,100,255,100);
}

void draw(){
  rect( random(width) , random(height) , 20 , 20 );
}

void mousePressed(){
  background(0);
}