Monserrat Torres: Proyecto Bidimensional

De Casiopea
Bidimensional


TítuloBidimensional
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 2
Período2013-
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.
Alumno(s)Monserrat Torres
ProfesorHerbert Spencer

=EJERCICIO BIDIMENSIONAl= 
void setup() {
  
  size(500,500);
  background(255);


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