Filippa Massa - Tarea 4
De Casiopea
| Título | Tarea 4 |
|---|---|
| Tipo de Proyecto | Proyecto de Curso |
| Palabras Clave | tarea 4 |
| Período | 2012- |
| Asignatura | Imagen Escrita 2012, |
| Del Curso | Imagen Escrita 2012, |
| Carreras | Arquitectura |
| Alumno(s) | Filippa Massa |
| Profesor | Herbert Spencer |
float d;
void setup() {
size(600,600); smooth(); background(48,139,206); stroke(100, 655); strokeCap(ROUND);
}
void draw() {
if (mousePressed) {
strokeWeight(4);
line(mouseX, mouseY, pmouseX, pmouseY);
}
}
void keyPressed() {
if (key == 't') {
stroke (308, 52, 307);
}
if (key == 'y') {
stroke (255,7,60);
}
if (key == 'o') {
stroke (112,40,4);
}
if (key == 'q') {
stroke (200,177,201);
}
if (key == 'k') {
stroke (55,60);
}
if (key == 'i') {
stroke (30,400);
}
if (key == 'l') {
stroke (600,400,57);
}
if (key == 'p') {
stroke (1000,99,20,50);
}
if (key == 'n') {
background(0);
}
}
