Daniela faundez tarea 6

De Casiopea
Daniela Faundez tarea 6



TítuloDaniela Faundez tarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Daniela Faundez
ProfesorHerbert Spencer

color c = color(#E653FA); float x = 40; float y = 400; float speed = 1;

void setup() {


size(500,500); }

void draw() {

background(#E653FA); move(); display(); }

void move() {

x = x + speed; if (x > width) {

x = 30;

} }

void display() {

fill(c); stroke (#53086F); rect(x, 350,mouseY , 2); rect(150,x,2,mouseY);


}