Francisca de la Maza: Pizarra

De Casiopea


TítuloPizarra
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012, 1º Diseño 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)Francisca de la Maza
ProfesorHerbert Spencer

float d; void setup() {

size(700,600); smooth(); background(300); stroke(75, 250); strokeCap(ROUND); } void draw() {

if (mousePressed) {

 dist(mouseX, mouseY, pmouseX, pmouseY); 
  map(d, 40, 60, 1, 20); 
 strokeWeight(8);
 line(pmouseX, pmouseY, mouseX, mouseY);

} } void keyPressed() {

if (key == 'd') {

 stroke (05,867,260);

}

 if (key == 'g') { 
 stroke (200,943,506);


}if (key == 'c') {

 stroke (32,75,80);

}


}