A.pazosses ciclo for

De Casiopea


TítuloA.pazosses ciclo for
Tipo de ProyectoProyecto de Taller
Palabras ClaveImagen escrita
Período2013-
AsignaturaImagen Escrita 2013 - DIS,
Del CursoImagen Escrita 2013 - DIS,
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)A. Paz Osses
ProfesorHerbert 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);

}