xxxxxxxxxx
65
let points = [];
function setup() {
createCanvas(170, 350);
generatePoints();
}
function draw() {
noStroke();
fill();
points.forEach(p => {
circle(p.x, p.y, 3);
});
}
function generatePoints() {
let firstPoint = createVector(random(width),
random(height));
points.push(firstPoint);
let range = getSecondPointRange(firstPoint);
let secondPoint = createVector(random(range.w1, range.w2),
random(range.h1, range.h2));
points.push(secondPoint);
// let thirdPoint;
// let minDistance = 0;
// for (let i = 0; i < 100; i++) {
// let currentPoint = createVector(random(width), random(height));
// let totalD = totalDistance(currentPoint);
// if (totalD > minDistance) {
// minDistance = totalD;
// thirdPoint = currentPoint;
// }
// }
// points.push(thirdPoint);
}
function totalDistance(currentPoint) {
let d = 0;
points.forEach(p => {
d += currentPoint.dist(p);
});
return d;
}
function getSecondPointRange(firstPoint) {
let secondRange = {
w1: 0,
w2: width/2,
h1: 0,
h2: height/2
};
if (firstPoint.x > width/2) {
secondRange.w1 = width/2;
secondRange.w2 = width;
}
if (firstPoint.y > height/2) {
secondRange.h1 = height/2;
secondRange.h2 = height;
}
return secondRange;
}