A.pazosses ciclo for
De Casiopea
Título | A.pazosses ciclo for |
---|---|
Tipo de Proyecto | Proyecto de Taller |
Palabras Clave | Imagen escrita |
Período | 2013- |
Asignatura | Imagen Escrita 2013 - DIS, |
Del Curso | Imagen Escrita 2013 - DIS, |
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) | A. Paz Osses |
Profesor | Herbert Spencer |
float margen, xSpace, ySpace; int xElems, yElems;
void setup() {
size(500,500); margen = 50; xElems = 10; yElems = 10; calc(); mouseX = xElems; mouseY = yElems;
}
void draw() {
background(255); xElems = (int) mouseX / 5; yElems = (int) mouseY / 5; calc(); for (float x = margen; x < height-margen; x += xSpace){ for (float y = margen; y < width-margen; y += ySpace){ stroke(0, 50, 250); fill(100,0,0); ellipse(x,y,50,50); } }
}
void calc() {
xSpace = (width - 1) / (float)(xElems - 1); ySpace = (height - 1) / (float)(yElems - 1);
}