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);
line(100, 0, 100, 20);
circle(20, 300, 0, 0);
rect(400, 0, 0, 1000);
}