Valentina Godoy: Tarea 4
De Casiopea
Título | Valentina Godoy: Tarea 4 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 4 |
Del Curso | Imagen Escrita 2012, |
Carreras | Diseñ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 |
Profesor | Herbert 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); }
}