xxxxxxxxxx
27
let tgt_x, tgt_y;
let p;
function setup() {
createCanvas(600, 600);
background(220);
tgt_x = random(width);
tgt_y = random(height);
stroke(color(255,0,0));
noFill();
circle(tgt_x, tgt_y, 10);
p = {
x: width/2,
y: height/2,
vx: 0,
vy: 0,
col: color(0),
};
}
function draw() {
// background(220);
}