Renata Villaseñor, tarea 6
De Casiopea
Título | Renata Villaseñor, tarea 6 |
---|---|
Tipo de Proyecto | Proyecto de Curso, Proyecto de Tutoría |
Palabras Clave | tarea 6 |
Del Curso | Imagen Escrita 2012, |
Carreras | Diseñ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) | Renata Villaseñor |
Profesor | Herbert Spencer |
Se trata de un Rectángulo que avanza el forma horizontal, y al momento de avanzar cambia de color de oscuro a más claro.
color c = color(0); float x = 78; float y = 23; float speed = 4;
void setup() {
size(700,700); }
void draw() {
background(34, 37,67); move(); display();
}
void move() {
y = y + speed; if (x > width) { y = 32; }
}
void display() {
fill(y); rect(y,98,26,89);
}