Karla Santibáñez, tarea 4, pizarra

De Casiopea


Título
Tipo de ProyectoProyecto de Curso
Palabras ClaveKarla Santibáñez, tarea 4, pizarra
Período2012-
AsignaturaTaller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Karla Santibáñez
ProfesorHerbert Spencer

float board;

void setup() {

 size(500, 600);
 background(200);
 smooth();
 strokeCap(SQUARE);

}

void draw() {

 if (mousePressed) {
   strokeWeight(5);
   strokeJoin(ROUND);
   line(mouseX, mouseY, pmouseX, pmouseY);
 }

}

void keyPressed() {

 if (key == 'q') {
   stroke(643, 85, 93);
 }
 if (key == 'w') {
   stroke(46, 700, 102);
 }
 if (key == 'e') {
   stroke(74, 758, 922);
 }
 if (key == 'r') {
   stroke(633, 13, 432);
 }
  if (key == 't') {
   stroke(69, 63, 88);
 }
 if (key == 'a') {
   saveFrame("pizarra.ksantibanez.jpg");
 }
 if (key == 'y') {
   background(255);
 }

}