xxxxxxxxxx
35
// part of a speed challange lol
var A;
var B;
var C;
var o = 5;
var d = 1;
var d2 = 0.04;
function setup() {
createCanvas(400, 400);
frameRate(60);
A = createVector(200,0);
A.rotate(1);
B = createVector(200,0);
B.rotate(-1);
C = createVector(0,0);
}
function draw() {
background(220);
fill('yellow')
noStroke();
A.rotate(-d2);
B.rotate(d2);
o+=d;
if (B.heading() > 0 || B.heading() < -1) {d = -d; d2=-d2};
print(o)
translate(width/2, height/2);
arc(C.x, C.y, 200, 200, A.heading(), B.heading());
}