Charlotte Jander: Ciclo For 1

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.
Ciclo For 1


TítuloCiclo For 1
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 2
Período2013-2013
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)Charlotte Jander
ProfesorHerbert Spencer


int count;
void setup() {
  size (500, 500);
  smooth();

count = 1;
noLoop();
}

void draw() {
background(255);
  
  for(int y = 40; y <= 450; y += 40){
  for(int x = 50; x <= 450; x *= 1.5){
    if ((x % 3) == 0){
      noStroke();
      fill(0);
  ellipse(x/1.1,y, 3, 3);
 
    }else{
      noStroke();
      fill(0);
      ellipse(x+1.5, y+20, 3, 3);
    }
  }
  }
  saveFrame("ciclofor"+"-"+count+".jpg");
  count = count + 1;
  
  if(count == 3){
    exit();
}
}