xxxxxxxxxx
20
let moveTest = 1
function setup() {
createCanvas(window.innerWidth, window.innerHeight);
background(0x000000);
}
function draw() {
moveTest++
stroke(250)
fill(0xffffff)
circle(mouseX,mouseY,20)
noFill();
stroke(255);
bezier(mouseX, mouseY, 200, 200, 0, 0, 0, 0, 0, 0, 100, 0);
}