xxxxxxxxxx
35
let d = 0;
let direction;
let c = 1.5;
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
background(220);
translate(width/2, height/2);
noFill();
strokeWeight(3);
d = constrain(d, 0, 180);
arc(0, 0, 100, 100, -180, -180+d);
if (d <= 0){
direction = c;
} else if (d >= 180) {
direction = -c;
}
d = d + direction;
}
// function keyPressed() {
// if (keyCode == RIGHT_ARROW) {
// d = d + direction;
// }
// print(d);
// }