Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active March 9, 2019 17:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbostock/11478058 to your computer and use it in GitHub Desktop.
Save mbostock/11478058 to your computer and use it in GitHub Desktop.
Phyllotaxis II
license: gpl-3.0
height: 960
redirect: https://observablehq.com/@mbostock/phyllotaxis
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
fill: none;
stroke: #000;
stroke-width: 1px;
pointer-events: all;
}
path:hover {
fill: orange;
}
</style>
<body>
<canvas width="960" height="960"></canvas>
<script src="//d3js.org/d3-voronoi.v0.3.min.js"></script>
<script>
var canvas = document.querySelector("canvas"),
width = canvas.width,
height = canvas.height,
context = canvas.getContext("2d");
var spacing = 6,
radius = Math.sqrt(width * width + height * height) / 3 + spacing,
theta = Math.PI * (3 - Math.sqrt(5)),
sites = [];
for (var i = 0, r, a, x, y; (r = spacing * Math.sqrt(i)) < radius; ++i) {
x = width / 2 + r * Math.cos(a = i * theta);
if (-spacing > x || x > width + spacing) continue;
y = height / 2 + r * Math.sin(a);
if (-spacing > y || y > height + spacing) continue;
sites.push([x, y]);
}
var cells = d3_voronoi.voronoi()
.extent([[-1, -1], [width + 1, height + 1]])
.polygons(sites);
context.beginPath();
cells.forEach(function(cell) { drawPolygon(cell); });
context.lineWidth = 0.5;
context.stroke();
sites.forEach(function(site) { drawPoint(site); });
function drawPoint(point) {
context.fillRect(Math.floor(point[0]), Math.floor(point[1]), 1, 1);
}
function drawPolygon(points) {
context.moveTo(points[0][0], points[0][1]);
for (var i = 1, n = points.length; i < n; ++i) context.lineTo(points[i][0], points[i][1]);
context.closePath();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment