Paulina Martínez IE2012 Tarea 5
De Casiopea
Título | Paulina Martínez IE2012 Tarea 5 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 5 |
Período | 2012-2012 |
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) | Paulina Martínez |
Profesor | Herbert Spencer |
float[][] one; int y=0;
void setup() {
size (700,700); one = new float [2500][5]; background(320
);
smooth ();
}
void draw () { if (mousePressed)
{ one[y][0] = mouseY; one[y][1] = mouseX; one[y][2] = pmouseY; one[y][3] = pmouseY; y++; } for (int a=0; a<=y; a++)
{ strokeWeight(5); stroke(#93F50C, 1); line(one[a][0], one[a][1], one[a][2] ,one[a][3]); } }