Gabriel González 100 líneas processing 2012

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.


TítuloGabriel González 100 líneas processing 2012
Tipo de ProyectoProyecto de Curso
Palabras Claveprocessing, revés del lenguaje
Período2012-
Asignatura1º ARQ,
Del CursoImagen Escrita 2012,
CarrerasArquitectura, Diseñ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)Gabriel González
ProfesorHerbert Spencer

void setup() {

 size(700, 700);
 background(255);	
 for (int r = 1; r < 101; r = r+2){
 line(500, r*6, r*5, 400);
 line(500, r*6, r*4, 400);
 
 }
 }