Filippa Massa - Tarea 4

De Casiopea
Tarea 4


TítuloTarea 4
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Filippa Massa
ProfesorHerbert 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);
 }

}