xxxxxxxxxx
30
let s1;
function setup() {
createCanvas(400, 400);
s1 = createSlider(0,45);
}
function draw() {
background(220);
let theta = s1.value();
noStroke();
fill(0);
text(theta,10,20);
translate(width/2,height/2);
angleMode(DEGREES);
rectMode(CENTER);
stroke(0);
noFill()
rect(0,0,200,200);
push();
rotate(theta);
rect(0,0,200,200);
pop();
push();
fill(255,0,0,50);
rotate(45);
ellipseMode(CENTER);
ellipse(0,0,50,250);
pop();
}