Diferencia entre revisiones de «Agustina Fernandez, Bidimensional»

De Casiopea
Sin resumen de edición
Sin resumen de edición
Línea 11: Línea 11:
}}
}}
<pre>
<pre>
<nowiki>size(500, 500);  // tamaño de la película
<nowiki>
size(500, 500);  // tamaño de la película
background(255); // fondo blanco
background(255); // fondo blanco


Línea 30: Línea 31:
}
}


</nowiki>
</pre>
</pre>
</nowiki>

Revisión del 09:59 24 may 2013


TítuloAgustina Fernandez, Bidimensional
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
Período2013-
AsignaturaImagen Escrita,
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)Agustina Fernandez
ProfesorHerbert Spencer

size(500, 500);  // tamaño de la película
background(255); // fondo blanco

/*

 line(20, 20, 480, 20);
 line(20, 40, 480, 40);
 line(20, 60, 480, 60);
 line(20, 80, 480, 80);
 line(20, .., 480, .... 
 


*/

for (int y = 8; y < 460; y += 10) {
  line(10, y, 400, y);
}