xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0, 0, 0);
}
function draw() {
noFill()
stroke(224,141,187);
//circle(224,141,187);
rectMode(CENTER);
translate(width/2, height/2);
rotate(sin( millis()/100000 )*199);
rect(5000, 0, 5000, 20);
line(20, 300, 0, 0);
line(0, 0, 0, 5000);
}