Maximiliano Leon: Bidimensional

De Casiopea


TítuloBidimensional
Tipo de ProyectoProyecto de Curso
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)Maximiliano León
ProfesorHerbert Spencer
void setup() {
 
 size(500,500);
background(255);


for (int x = 60; x < 440; x = x+100){
 for (int y = 30; y < 470; y = y+5) {
   point(x,y);
   stroke(y/2);
   strokeWeight(4);
 }
}


}