Public
Edited
Jul 22, 2023
1 fork
Insert cell
Insert cell
container = container_from(canvas);
Insert cell
sketch = function( p ) {

let circles = [];

p.setup = function() {
p.createCanvas(p.windowWidth, 800);
}

p.draw = function() {
p.background(0);
for(let c of circles) {
c.draw();
}
addCircles(1);
stopExistingCircles();
}
function addCircles(amount) {
for (let i = 0; i < amount; i++) {
let newCircle = new Circle(p.random(p.width), p.random(p.height));
if (!newCircleOverlaps(newCircle)) {
circles.push(newCircle);
}
}
}

function newCircleOverlaps(newCircle) {
for (let otherCircle of circles) {
if (newCircle.overlaps(otherCircle)) {
return true;
}
}
return false;
}

function stopExistingCircles(){
for (let i = 0; i < circles.length - 1; i++) {
let circleOne = circles[i];
for (let j = i + 1; j < circles.length; j++) {
let circleTwo = circles[j];

if(circleOne.overlaps(circleTwo)){
circleOne.isGrowing = false;
circleTwo.isGrowing = false;
}
}

}
}

class Circle {
constructor(x, y) {
this.x = x;
this.y = y;
this.r = 5;
this.isGrowing = true;
this.color = p.color(p.random(255), p.random(255), p.random(255));
}

draw() {
p.fill(this.color);
p.circle(this.x, this.y, this.r * 2);

if(this.isGrowing){
this.r += 1;
}
}

overlaps(otherCircle){
return p.dist(this.x, this.y, otherCircle.x, otherCircle.y)
< this.r + otherCircle.r + 2;
}
}

}
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more