xxxxxxxxxx
19
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
frameRate(4);
}
function draw() {
background(255);
// if (random() > 0.5) {
// polygon(0, 0, );
// } else {
// arc(600, 0, 600, 600, 90, 180);
// arc(0, 600, 600, 600, 270, 360);
// }
polygon(0, 0, 600, 600, 0, 600);
}