-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
72 lines (61 loc) · 1.96 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { Voronoi } from "./voronoi.js";
export const randomInt = () => {
const ranges = [
{ min: 100, max: 700 },
];
const { min, max } = ranges[Math.floor(Math.random() * ranges.length)];
return Math.floor(Math.random() * (max - min + 1)) + min;
};
export function drawVoronoi(canvasId, nPoints) {
const canvas = document.getElementById(canvasId);
const ctx = canvas.getContext("2d");
const canvasWidth = canvas.clientWidth;
const canvasHeight = canvas.clientHeight;
const points = [];
// Set canvas size
canvas.width = canvasWidth;
canvas.height = canvasHeight;
for (let i = 0; i < nPoints; i++) {
points.push({
x: Math.random() * canvasWidth,
y: Math.random() * canvasHeight,
});
}
const voronoi = new Voronoi();
const bbox = { xl: 0, xr: canvasWidth, yt: 0, yb: canvasHeight };
const diagram = voronoi.compute(points, bbox);
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw Voronoi cells
diagram.cells.forEach((cell) => {
ctx.beginPath();
ctx.moveTo(
cell.halfedges[0].getStartpoint().x,
cell.halfedges[0].getStartpoint().y
);
cell.halfedges.forEach((edge) => {
const startPoint = edge.getStartpoint();
ctx.lineTo(startPoint.x, startPoint.y);
});
ctx.closePath();
const r = ([cell.site.voronoiId] * 3) % 255;
const g = [cell.site.voronoiId * 5 + 1] % 255;
const b = ((r * g) / (r + g)) % 255;
ctx.strokeStyle = `rgba(${r}, ${g}, ${b}, 0.5)`;
ctx.fillStyle = `rgba(${r}, ${g}, ${b}, 0.2)`;
ctx.stroke();
ctx.fill();
});
}
let i = 0;
window.addEventListener("resize", () => {
i = i + 1;
console.log(i);
drawVoronoi("background", randomInt());
});
// Initialize on page load
window.addEventListener("load", drawVoronoi("background", randomInt()));
document.addEventListener("DOMContentLoaded", () => {
document.getElementById("theme-toggle").addEventListener("click", (event) => {
drawVoronoi("background", randomInt());
});
});