xxxxxxxxxx
75
let grid;
let particles;
function setup() {
createCanvas(800, 800);
noiseDetail(8, 0.75);
let rcol = int(random(0, width - 1));
grid = [];
for (let y = 0; y < height; y++) {
grid[y] = [];
for (let x = 0; x < width; x++) {
let n = noise(x * 0.01, y * 0.01);
if (x == rcol) {
grid[y][x] = -PI;
} else {
grid[y][x] = map(n, 0.0, 1.0, 0, TWO_PI);
}
}
}
particles = [];
for (let _ = 0; _ < 1000; _++) {
particles.push({
shadow: false,
x: random(0, width - 1),
y: random(0, height - 1),
});
}
let idx = int(random(particles.length - 1));
particles[idx].shadow = true;
background(220);
stroke(color(20,20,20,20))
}
function draw() {
if (particles.length > 1) {
for (let i = particles.length - 1; i >= 0; i--) {
let p = particles[i];
point(p.x, p.y);
let a = grid[int(p.y)][int(p.x)];
p.x += cos(a);
p.y += sin(a);
if (p.x < 0 || p.x > width - 1 || p.y < 0 || p.y > height - 1)
particles.splice(i, 1);
}
} else {
let p = particles[0];
drawingContext.shadowOffsetX = 5;
drawingContext.shadowOffsetY = -5;
drawingContext.shadowBlur = 10;
drawingContext.shadowColor = color(255, 0, 255);
point(p.x, p.y);
let a = grid[int(p.y)][int(p.x)];
p.x += cos(a);
p.y += sin(a);
if (p.x < 0 || p.x > width - 1 || p.y < 0 || p.y > height - 1)
particles.splice(i, 1);
}
if (particles.length == 0) {
console.log("done");
noLoop();
}
}