Valentina Villegas Tarea 6

De Casiopea


TítuloValentina Villegas Tarea 6
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 6
AsignaturaImagen Escrita, Imagen Escrita 2012,
Del CursoImagen Escrita, Imagen 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)Valentina Villegas
ProfesorHerbert Spencer

color c = color(1); float x = 250; float y = 20; float speed = 3;

void setup() {


size(700,700); }

void draw() {

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

}

void move() {

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

}

void display() {

fill(y);
rect(x,y,200,300);

}