Daniela Delmás: Pizarra

De Casiopea
Revisión del 09:25 19 abr 2012 de Danieladelmas (discusión | contribs.)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)


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);
}

}