Gianna Barchiesi, tarea 6

De Casiopea


Títulotarea 6
Palabras Clavetarea 6
AsignaturaImagen Escrita 2012,
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)Gianna Barchiesi
ProfesorHerbert Spencer

color c = color(0); float x = 0; float y = 200; float speed = 3;

void setup() {


size(700,700); }

void draw() {

background(0, 435, 20);
move();
display();

}

void move() {

x = x + speed;
if (y > width) {
  x = 600;
}

}

void display() {

fill(y);
rect(x, 350, x, y);

}