Cesar Henriquez: poligono
De Casiopea
Título | Poligono |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 3 |
Período | 2013- |
Asignatura | Imagen Escrita, |
Del Curso | Imagen Escrita 2013 - ARQ, |
Carreras | Arquitectura |
Alumno(s) | César Henríquez |
Profesor | Herbert Spencer |
int num = 18;
float i = TWO_PI / num; float r = 70; float x, y;
void setup() {
size(500, 500);
}
void draw() {
background (#000066); num = mouseX / 10; float i = TWO_PI / num; beginShape (); fill (#00FF00); 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 (#FF0000); for (float t = 0; t < TWO_PI; t = t + i) {
x = cos(t) * r + width/1.4; y = sin(t) * r + height/4; vertex (x, y); } endShape (); beginShape (); fill (#00FF00); for (float t = 0; t < TWO_PI; t = t + i) { x = cos(t) * r + width/1.4; y = sin(t) * r + height/1.4; vertex (x, y); } endShape (); beginShape (); fill (#FF0000); for (float t = 0; t < TWO_PI; t = t + i) {
x = cos(t) * r + width/4; y = sin(t) * r + height/1.4; vertex (x, y); } endShape (); saveFrame ("poligono.jpg")
}