void setup(){ size(300,300, P2D); smooth(4); } void draw(){ background(0); fill(255,0,0); ellipse(100,100,100,100); fill(0,255,0); ellipse(150,150,100,100); }