Daniela Delmás: Pizarra

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.


TítuloDaniela Delmás: Tarea 4 Pizarra
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2012-
AsignaturaImagen Escrita 2012,
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., 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)Daniela Delmás
ProfesorHerbert Spencer

float d;

void setup() {

size(700,700);
smooth();
background(#58FAAC);
stroke(#088A68);
strokeCap(ROUND);

}

void draw() {

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

}

void keyPressed() {

if (key == 'a') {
  stroke (#FE2E2E);
}
if (key == 's') {
  stroke (#FF8000);
}
if (key == 'd') {
  stroke (#FFFF00);
}
  if (key == 'f') {
  stroke (#80FF00);
}
if (key == 'g') {
  stroke (#01DF3A);
}
if (key == 'h') {
  stroke (#00BFFF);
}
if (key == 'j') {
  stroke (#AC58FA);
}
if (key == 'k') {
  stroke (#A901DB);
}
if (key == 'l') {
  background(#FF0080);
}

}