xxxxxxxxxx
44
let lines1;
let lines2;
function setup() {
createCanvas(windowWidth, windowHeight);
lines1 = new Lines(100, 200, 200, 500);
lines2 = new Lines(0, 0, 200, 500);
background(20);
}
function draw() {
console.log(lines2);
// noLoop();
}
function mouseDragged() {
lines1.make();
lines1.move();
lines2.make();
}
class Lines {
constructor(startX, startY, endX, endY) {
this.startX = startX;
this.endX = endX;
this.startY = startY;
this.endY = endY;
}
make() {
stroke(220, 90);
line(this.startX, this.startY, this.endX, this.endY);
}
move() {
this.startX = random(100);
this.startY = random(100);
this.endX = mouseX;
this.endY = mouseY;
}
}