Diferencia entre revisiones de «Paul Guitard: 100 Lineas»

De Casiopea
Sin resumen de edición
Sin resumen de edición
 
Línea 10: Línea 10:
|Imagen=Kai03.png
|Imagen=Kai03.png
}}
}}
<nowiki><pre>
<pre>




Línea 46: Línea 46:
fill(#7C4B78);  
fill(#7C4B78);  
ellipse(350, 350, 100, 100);
ellipse(350, 350, 100, 100);
</pre></nowiki>
</pre>

Revisión actual - 01:09 31 may 2012

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)Paul Guitard
ProfesorHerbert Spencer


size(700, 700); 
background(#7C4B78); 
smooth(); 
stroke(255); 
strokeWeight(5);

for (int i = 15; i < 700; i = i+28) {

  line(0, i, 350, 350);
  line(350, 350, 700, i);
  line(350, 350, i, 700);
  line(i, 0, 350, 350);
}

stroke(#7C4B78); 
fill(#7C4B78); 
ellipse(350, 350, 500, 500);

stroke(255); 
fill(255); 
ellipse(350, 350, 400, 400);

stroke(#7C4B78); 
fill(#7C4B78); 
ellipse(350, 350, 300, 300);

stroke(255); 
fill(255); 
ellipse(350, 350, 200, 200);

stroke(#7C4B78); 
fill(#7C4B78); 
ellipse(350, 350, 100, 100);