Maria Jesus Martinez: 100 Lineas

De Casiopea
Archivo:100 líneas jesuM.png
Proyecto de Imagen escrita, 100 Lineas


TítuloProyecto de Imagen escrita, 100 Lineas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 1
Período2012-
Del CursoImagen Escrita 2012,
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)Maria Jesus Martinez
ProfesorHerbert Spencer
void setup(){
    size(300,300);
  background(200);
  smooth();

}
void draw(){
  for(int q=50;q<250;q=q+5){
    line(q,50,250,q);
    line(50,50,q,250);
  }
}