xxxxxxxxxx
130
let drops = [];
let r = 1;
let a = 0;
let palette;
let bk;
let newDrop = true;
let currentColor;
let ibm_blue = "#0f62fe";
let vaporwave = [
// (0, 0, 0),
// (20, 20, 20),
// (220, 220, 220),
"#ff71ce",
"#01cdfe",
"#05ffa1",
"#b967ff",
"#fffb96",
"#0f62fe",
// (0, 0, 0),
// (0, 0, 0),
// (0,0,0),
];
function setup() {
createCanvas(1920*2, 1080*2);//3000,3000);//640, 360);
randomSeed(1);
// palette = [
// color(11, 106, 136),
// color(45, 197, 244),
// color(112, 50, 126),
// color(146, 83, 161),
// color(164, 41, 99),
// color(236, 1, 90),
// color(240, 99, 164),
// color(241, 97, 100),
// color(248, 158, 79),
// //
// ];
bk = color(ibm_blue);//color(252, 238, 33); //random(palette);
currentColor = random(vaporwave);
noiseDetail(8, 0.25);
for (let _ = 0; _ < 100*10; _++) {
currentColor = color(random(vaporwave));
counter++;
addInk(int(random(width - 1)), int(random(height - 1)), random(12,100), currentColor, drops);
}
drawingContext.shadowOffsetX = 5;
drawingContext.shadowOffsetY = -5;
drawingContext.shadowBlur = 10;
drawingContext.shadowColor = 'black';
for (let _ = 0; _ < 100; _++) {
let life =50;
let x = random(width-1);
let y = random(height-1);
let r = random(8, 15);
let col = color(random(vaporwave));
counter++;
addInk(x, y, r, currentColor, drops);
while (life > 0 && x >= 0 && x <= width-1 && y >= 0 && y <= height-1) {
let n = noise(x*0.01, y*0.01);
let a = map(n, 0.0, 1.0, -TWO_PI, TWO_PI);
x += (r/2) * cos(a);
y += (r/2) * sin(a);
counter++;
addInk(x, y, r, col, drops);
life--;
}
}
}
function tineLine(v, x, y, z, c) {
for (let drop of drops) {
drop.tine(v, x, y, z, c);
}
}
function addInk(x, y, r, col, _drops) {
let drop = new Drop(x, y, r, col);
for (let other of drops) {
other.marble(drop);
}
_drops.push(drop);
}
function mouseReleased() {
newDrop = true;
}
let val = 4;
let counter = 1;
function draw() {
// if (mouseIsPressed) {
// let v1 = createVector(pmouseX, pmouseY);
// let v2 = createVector(mouseX, mouseY);
// v2.sub(v1);
// if (v2.mag() > 0.1) {
// v2.normalize();
// tineLine(v2, mouseX, mouseY, 2, 16);
// }
// }
// if (mouseIsPressed) {
// if (newDrop) {
// currentColor = palette[counter % palette.length];
// newDrop = false;
// counter++;
// }
// addInk(mouseX, mouseY, 12, currentColor);
// }
background(bk);
for (let drop of drops) {
drop.show();
}
noLoop();
}