xxxxxxxxxx
26
function setup() {
createCanvas(200, 200);
angle = 30;
ts = 60;
setInterval(()=>{angle += 30}, 500)
}
function draw() {
background('aliceBlue');
translate(width/2, height/2);
fill('white');noStroke()
rectMode(CENTER)
rect(0,0,ts,ts);
push();
rotate(radians(angle));
rectMode(CORNER);
fill(48);noStroke()
rect(-ts,0,2*ts,ts);
pop();
noFill();stroke('goldenrod');strokeWeight(3);
rect(0,0,ts,ts);
}