Valentina Godoy: Tarea 4

De Casiopea



TítuloValentina Godoy: Tarea 4
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
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)Valentina Godoy
ProfesorHerbert Spencer

float d, grosor; // distancia y grosor void setup() {

 size(screen.width, screen.height); //pantalla completa 
 smooth(); // suavizado (anti-alisaing) 
 background(#66ff99); // fondo negro 
 stroke(#cc0099); 
 strokeCap(PROJECT); 

}

void draw() {

 if (mousePressed) { 
   // velocidad = distancia / tiempo 
   /* calcula distancia entre 
      la posición actual del mouse y la posición anterior */ 
   d = dist(mouseX, mouseY, pmouseX, pmouseY); 
   grosor = map(d, 0, 100, 1, 20); 
   strokeWeight(1);  // strokeWeight(grosor) 
   line(mouseX, mouseY, pmouseX, pmouseY); 
 } 

}