Valentina Godoy: Tarea 6

De Casiopea


TítuloValentina Godoy: Tarea 6
Palabras Clavetarea 6
Período2012-2012
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)Valentina Godoy
ProfesorHerbert Spencer

color c = color(#0175A2); float x = 60; float y = 20; float speed = 8;

void setup() {


size(700,700); }

void draw() {

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

void move() {

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

y = 50; } }

void display() {

fill(c); rect(70, x,y , 55); }