Maria Jesus Oliva: Espiral

De Casiopea
Identidad Circular: Espiral


TítuloIdentidad Circular: Espiral
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
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)Maria Jesus Oliva Palma
ProfesorHerbert Spencer


float x, y, r, h;

void setup(){
noFill ();
stroke (0); 
size(600, 600);
 
}
void draw(){
background (225);
float a = (QUARTER_PI/ mouseX) ;

r=3;
h= (PI/3) * -0.01;

beginShape();
for (float t = 50; t < TWO_PI * 50; t += a) {

x = width/2 + cos(t) * r;
y = height/2 + sin(t) * r;

vertex(x, y);
r += h;
}
endShape();


}