size(1000,600); // draw the square first, with thicker stroke strokeWeight(3); rect(300,100,400,400); // draw the circle second, returning to thin stroke strokeWeight(1); ellipse(500,300,400,400); // draw the lines line(300,300,700,300); line(500,100,500,500);