Gabriela Correa: Pizarrón de tiza.

De Casiopea
Archivo:Pizarrón-screenshot.png
Gabriela Correa: Pizarrón de tiza.


TítuloGabriela Correa: Pizarrón de tiza.
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
AsignaturaTaller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Gabriela Correa
ProfesorHerbert Spencer
 Cambio de color:
   a: blanco
   s: rojo
   d: azul
   f: amarillo
 e: Borrar pizarra.
 r: Guardar imagen.

____________________________________________________


 float board;

void setup() {
  size(700, 700);
  background(63, 103, 62);
  smooth();
  strokeCap(SQUARE);
}

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

void keyPressed() {
  if (key == 'a') {
    stroke(255, 60);
  }
  if (key == 's') {
    stroke(241, 71, 71, 60);
  }
  if (key == 'd') {
    stroke(107, 140, 246, 60);
  }
  if (key == 'f') {
    stroke(243, 247, 124, 60);
  }
  if (key == 'r') {
    saveFrame("board-##.png");
  }
  if (key == 'e') {
    background(63, 103, 62);
  }
}