xxxxxxxxxx
12
var circleValue = 50;
function setup() {
createCanvas(400, 400);
}
function draw() {
stroke(255, 50);
strokeWeight(circleValue * 2);
point(mouseX, mouseY);
background(0, 0, 0, 4);// added transparency to the background to add a cool effect
}