xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
angleMode(DEGREES);
}
function draw() {
background(100);
stroke(255);
noFill();
translate(width/2, height/2);
rotate(second() + 180);
line(0,0,0,200);
map(60,0,59,0,360);
}