//Lanipse Rosario Jan 31 //Homework one color c = color(0); float y = 20; float x = 50; float speed = 10; void setup() { size(500,500); } void draw() { background(255,0,0); move(); display(); } void move() { x = x + speed; if (x > width) { x = 5; } } void display() { fill(0,0,0); ellipse(x*2,y*2,1000,500); fill(0,200,0); ellipse(x/2,y/4,150,150); fill(255, 255, 255); rect(120, 120, 1120, 20); fill (0,0,0); rect(100, 100, 100, 50);