Ilanit Hirnheimer: Imagen Escrita: Tarea 6
De Casiopea
Título | Ilanit Hirnheimer: Imagen Escrita: Tarea 6 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 6 |
Del Curso | Imagen Escrita 2012, |
Carreras | Diseñ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) | Ilanit Hirnheimer |
Profesor | Herbert Spencer |
//figuras que se mueven, como función. Además, reaccionan con el movimiento del Mouse, pero siguiendo una trayectoria fija.
color c = color(255); float f = 60; float y = 120; float speed = 8; float r= random(200);
void setup() {
size(700,700); }
void draw() {
background(#88FF66); move(); display(); }
void move() {
f = speed/5 + f + speed; if (f > width) { f = 3; } }
void display() {
fill(y+30); triangle(50, 6, f, 500, mouseY-5, y-f); stroke (r); ellipseMode(CENTER); fill(0,50); ellipse(mouseX, f, 300,300); fill (0,60); stroke (#ff0000); rectMode(CENTER); rect(35, f,mouseX, mouseY);
}