xxxxxxxxxx
21
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB, 360, 100, 100, 100)
background(180, 40, 50);
}
function draw() {
translate(width/2, height/2);
// let v = createVector(random(-100, 100), random(-100, 100));
let v = p5.Vector.random2D();
v.mult(random(50,width/2));
if (frameCount==1){
noStroke();
fill(10);
ellipse(0, 0, 100, 50)
}
strokeWeight(4);
stroke(255, 10);
line(0, 0, v.x, v.y);
}