Montserrat Salvadó, piazarra y objeto
De Casiopea
Título | Piazarra y Objeto |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 6 |
Período | 2012-2012 |
Asignatura | Imagen Escrita 2012, |
Del Curso | Imagen Escrita 2012, |
Carreras | Arquitectura |
Alumno(s) | Montserrat Salvadó |
Profesor | Herbert Spencer |
//un rectángulo se desplaza horizontalmente por el la parte superior de la pizarra color c = color(243); float x = 50; float y = 100; float speed = 34; void setup() { size(700,700); } void draw() { background(#981F9A); move(); display(); } void move() { x = 6 + x + speed; if (x > width) { x = 1; } } void display() { fill(c); rect(x,y,80,30); }