xxxxxxxxxx
14
function setup() {
createCanvas(500, 500);
background(500, 500, 650);
rectMode(CENTER);
}
function draw() {
frameRate(60);
noFill();
strokeWeight (8);
stroke(random (150, 200), random (150, 200), random (200, 255));
strokeWeight (3);
line(mouseX, mouseY, 40, 460);
}