Consuelo Santis: Maquina de Dibujo

De Casiopea


TítuloMaquina de dibujo
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 4
Período2013-2013
AsignaturaImagen Escrita 2013 - DIS,
Del CursoImagen Escrita 2013 - DIS,
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., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Consuelo Santis Escudero
ProfesorHerbert Spencer

void setup() {
  size(600, 600);
  background(#000000);
  stroke(255);
  strokeWeight(10);
  smooth(10);
}
void draw() {  
  if (mousePressed)
  {
    point(mouseX, mouseY);
  }
  if (key=='X');
}

void keyPressed() {      
  if (key=='r') {
    stroke(#ffdf61);
  }
  if (key=='n') {
    stroke(50, 100);
    smooth(2);
  }
  if (key=='c') {
    stroke(#6C470E);
  }
}