xxxxxxxxxx
56
function setup() {
createCanvas(1000, 1000);
background(20);
textSize(48);
// stroke(220);
noStroke();
fill(220);
textFont("Times");
// text("you are so very special", 20, 48);
let circ_r = width * 0.05;
let circ_d = circ_r * 2;
stroke(220);
noFill();
/*
let x = random(circ_d, width-circ_d);
let y = random(circ_d, height-circ_d);
let t = random(0, TWO_PI);
let m = random(20,50);
for (let _ = 0; _ < m; _++) {
circle(x, y, circ_d);
x += 5 * cos(t);
y += 5 * sin(t);
circ_d += random(0, circ_r/4);
t += PI/32;
}
*/
let points = [];
for (let y = circ_r; y < height; y += circ_d) {
for (let x = circ_r; x < width; x += circ_d) {
point(x, y);
points.push({x:x, y:y});
}
}
// strokeWeight(0.5)
// for (let _ = 0; _ < 10; _++) {
// let p1 = random(points);
// let p2 = random(points);
// line(p1.x, p1.y, p2.x, p2.y);
// }
noLoop();
}
function draw() {
// background(220);
}