Ailyne Guzman: Figura
De Casiopea
Título | Ailyne Guzman: Figura |
---|---|
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) | Ailyne Guzman |
Profesor | Herbert Spencer |
int num = 19; float i = TWO_PI / num; float r = 80; float x, y; void setup() { size(500, 500); } void draw() { background(255); stroke(0); fill(#EEF700); num = mouseX / 10; float i = TWO_PI / num; beginShape(); 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); x = cos(t) * r + width-100; y = sin(t) * r + height-120; vertex(x, y); } endShape(); if (key == 's') { saveFrame("Figura-####.png"); } }