Encargo 3 patrón en base for

De Casiopea
Encargo 3 modulos en base for


TítuloEncargo 3 modulos en base for
Tipo de ProyectoProyecto de Curso
Palabras Claveencargo 3, modulo en base a for
Período2013-2013
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)Luciano Aucan Lagomarsino
ProfesorHerbert Spencer

encargo 3



void setup() {
  
  size(500,500);
  background(0);


 for (int x = 200; x < 300; x = x+1){
  for (int y = 30; y < 470; y = y+7) {
    point(x,y);
    stroke(y/10);
    strokeWeight(2);
  }
 }
 
 
}