Ciclo For

De Casiopea
Ciclo For



TítuloCiclo For
AsignaturaImagen Escrita,
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.
Alumno(s)Alessandra Robinson Torres
ProfesorHerbert Spencer
void setup () {
  size (500, 500);
  background (255);
  smooth();
  noLoop();
  noStroke();
}

void draw () {
  for ( int i =  11; i < height; i += 20) {
    for (int f = 1; f < width; f += 100) { 
      line ( i, 200, 100, f);
      colorMode(RGB,200);
      for (int j = 5; j < 100; j++) {
        stroke(i,j, random(250,100));
        
      }
    }
  }
  saveFrame("Flecha-##.jpg");
}