Daniela Araya Vargas: Trama "for"

De Casiopea
Trama "For" doble + random



TítuloTrama "For" doble + random
Tipo de ProyectoProyecto de Curso
AsignaturaTaller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita,
CarrerasArquitectura
Alumno(s)Daniela Araya Vargas
ProfesorHerbert Spencer
DAVargas-for.jpg


void setup () {
  size (500, 500);
  background (255);
  smooth();
  noLoop();
  noStroke();
}

void draw () {
  for ( int i = 10; i < height; i += 20) {
    for (int f = 10; f < width; f += 50) { 
      line ( i, 200, f, f);
      stroke (10, 1, 15);

        
  }    
  }
  saveFrame("DAVargas-##.jpg");
}