José Suter: Pizarra

De Casiopea


TítuloJosé Suter: Pizarra
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)José Suter
ProfesorHerbert 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);

} }