Francisca Manriquez- Ciclos For

De Casiopea


TítuloFrancisca Manriquez/ Bidimesional
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 2
Período2013-
AsignaturaImagen Escrita,
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)Francisca Manríquez Allendes
ellipse



void setup() {

 size(500,500);
 background(0);

for (int x = 50; x < 450; x += 10){
 for (int y = 50; y < 450; y += 10) {
   ellipse(x,y,y,x);
    stroke(y/2);
    strokeWeight(4);
   
      }
  }
}