Ilanit Hirnheimer: Imagen Escrita: Tarea 6

De Casiopea
Ilanit Hirnheimer: Imagen Escrita: Tarea 6



TítuloIlanit Hirnheimer: Imagen Escrita: Tarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
Del CursoImagen Escrita 2012,
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)Ilanit Hirnheimer
ProfesorHerbert 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);


}