What’s on our mind?

Collection of articles, design, site, and resources made by designers and publisher @Menu View

*
	const bgColor = 'hotpink';
    const inkColor = 'white';

    function setup() {
        createCanvas(windowWidth, windowHeight);
        stroke(inkColor);
        strokeWeight(2);
        fill(bgColor);
        frameRate(1);
    }
    function draw() {	
        background(bgColor);

        const count = round(windowWidth/12);

        for (let i = 0; i < count; i++) {
            const x = random(10, width);
            const y = random(10, height);
            const d = random(10, 250);
            
            circle(x, y, d);
        }
    }