Natalia Garcia 1000 lineas

De Casiopea



Título1000 Lineas
AsignaturaImagen Escrita
Del CursoImagen Escrita 2017
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.
1
Alumno(s)Natalia Garcia

<processingjs> void setup() {

 size(500, 500);
 background(#55FFB7);
 stroke(180);
 strokeWeight(2);
 

}

void draw() {

 for(int y = 10; y <= height-10; y*= 1.1){
     for(int x = 10; x <= width-10; x+= 10){
       line(x,y, x,y+5);
      
     }}}

</processingjs>