void setup(){ size(400,400); background(255); } void draw(){ fill(255); rect(0,0,200,200); fill(200,200,100); scale(0.9); rect(0,0,200,200); fill(200,100,100); scale(0.6); rect(0,0,200,200); }