size(200,200); // Set the size of the window background(255); // White background smooth(); // Set ellipses and rects to CENTER mode ellipseMode(CENTER); rectMode(CENTER); // Draw Rooba’s body stroke(0); fill(255, 0, 0); rect(100,100,20,100); // Draw Rooba’s head fill(255); rect(100,70,60,60); // Draw Rooba’s eyes fill(255, 0, 0); ellipse(81,70,16,32); ellipse(119,70,16,32); // Draw Rooba’s legs stroke(0); line(90,150,80,160); line(100,150,100,160); line(110,150,120,160);