Gabriela tarea 5
De Casiopea
Título | línea blanca |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 5 |
Período | 2012- |
Asignatura | Imagen Escrita 2012, |
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) | Gabriela Gaio |
Profesor | Herbert Spencer |
void setup() {
size(700, 700); smooth(); background(0); colorMode(RGB);
}
void draw() {
filter(BLUR); if (mousePressed) { filter(BLUR); } else { filter(THRESHOLD); } stroke(frameCount % 236, 166, 166); strokeWeight(4);
line(pmouseX, pmouseY, mouseX, mouseY);
}