xxxxxxxxxx
// https://coolors.co/086788-07a0c3-f0c808-fff1d0-dd1c1a
let p = [
[195, 94, 53],
[191, 96, 76],
[50, 97, 94],
[42, 18, 100],
[1, 88, 87]
];
function setup() {
createCanvas(800,800, WEBGL);
colorMode(HSB, 360, 100, 100, 100);
pixelDensity(0.15);
smooth();
// createEasyCam();
document.oncontextmenu = () => false;
background(0, 0, 100);
}
function draw() {
for (j = 0; j < 40; j++) {
let y = j * 30;
ortho(-width / 2, width / 2, -height / 2, height / 2, 0, 5000);
noStroke();
// strokeWeight(1);
for (let i = 0; i < 6; i++) {
fill(p[i], 10, 100);
translate(0, 0, -i * 0.1);
// plane(200 + i * 100, 200 + i * 100);
isLooping();
ellipse(random(10), random(y), 200 + i * 80, 200 + i * 80, 50);
}
}
// noLoop();
}