Constanza Arancibia Tarea 4

De Casiopea
Tarea Imagen Escrita


TítuloTarea Imagen Escrita
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2012-2012
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Constanza Arancibia
ProfesorHerbert Spencer
 

float d;

void setup() {

  size(800, 800);
  smooth();
  background(5, 23, 1);
  stroke(150, 150);
  strokeCap(ROUND);
}

void draw() {

  if (mousePressed) { 
    strokeWeight(8);
    line(mouseX, mouseY, pmouseX, pmouseY);
  }
}

void keyPressed() {

  if (key == 't') {
    stroke (308, 52, 307);
  }


  if (key == 'o') {
    stroke (12, 40, 43);
  }
  if (key == 'q') {
    stroke (200, 77, 201);
  }
  if (key == 'j') {
    stroke (55, 20);
  }
  if (key == 'c') {
    stroke (30, 400);
  }
  if (key == 'o') {
    stroke (100, 59, 32, 55);
  }
}