José Suter: Pizarra
De Casiopea
Título | José Suter: Pizarra |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 4 |
Asignatura | Imagen Escrita 2012, |
Del Curso | Imagen Escrita 2012, |
Carreras | Arquitectura |
Alumno(s) | José Suter |
Profesor | Herbert Spencer |
float d;
void setup() {
size(700,700); smooth(); background(#58FAAC); stroke(#088A42); strokeCap(ROUND); }
void draw() {
if (mousePressed) {
strokeWeight(10); line(mouseX, mouseY, pmouseX, pmouseY);
} }
void keyPressed() {
if (key == 'o') {
stroke (#00FFFF);
} if (key == 'i') {
stroke (#01DF01);
} if (key == 'u') {
stroke (#FF0000);
}
if (key == 'y') { stroke (#000000);
} if (key == 't') {
stroke (#FAFAFA);
} if (key == 'r') {
stroke (#04B404);
} if (key == 'e') {
stroke (#FFFF00);
} if (key == 'w') {
stroke (#0101DF);
} if (key == 'q') {
background(#CED8F6);
} }