Martin Araneda: Tarea 6

De Casiopea


TítuloMartin Araneda: Tarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6, imagen escrita 2012
Período2012-2012
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
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)Martin Araneda
ProfesorHerbert Spencer

color c = color(#FA1111); float x = 40; float y = 50; float speed = 1;

void setup() {


size(700,700); }

void draw() {

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

void move() {

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

y = 5;

} }

void display() {

fill(c); rect(x, 30,y , 40); }