Diego Wistuba: Polígono

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.
Polígono


TítuloPolígono
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
Período2013-2013
AsignaturaImagen Escrita,
Del CursoImagen Escrita 2013 - ARQ,
CarrerasArquitectura
Alumno(s)Diego Wistuba
ProfesorHerbert Spencer

int num = 80;

float i = TWO_PI / num; float r = 200; float x, y;

void setup() {

size(500, 500); }

void draw() { background (400); num = mouseX / 30; float i = TWO_PI / num; beginShape (); fill (100); for (float t = 0; t < TWO_PI; t = t + i) {

 x = cos(t) * r + width/4;
 y = sin(t) * r + height/4;
 vertex (x, y);
}
endShape ();
beginShape ();

fill (10); for (float t = 0; t < TWO_PI; t = t + i) {

 x = cos(t) * r + width/2;
 y = sin(t) * r + height/2;
 vertex (x, y);
}
endShape ();
beginShape ();

fill (30); for (float t = 0; t < TWO_PI; t = t + i) {

 x = cos(t) * r + width/8;
 y = sin(t) * r + height/8;
 vertex (x, y);
}
endShape ();

}