Skip to content

Instantly share code, notes, and snippets.

@syntagmatic
syntagmatic / README.md
Last active December 11, 2015 20:28 — forked from mbostock/.block
Colored Waterman
@syntagmatic
syntagmatic / README.md
Last active December 13, 2015 19:28 — forked from mbostock/.block
Force-Directed SVG Icons

Replaces the circles in the force-directed graph with some SVG icons.

@syntagmatic
syntagmatic / index.html
Last active December 14, 2015 06:59 — forked from anonymous/index.html
Polar Hover
<!DOCTYPE html>
<title>Polar Hover Effect</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<style type="text/css">
path {
fill: none;
stroke: black;
stroke-width: 2px;
}
.axis text {
@syntagmatic
syntagmatic / README.md
Last active December 22, 2015 04:39 — forked from mbostock/.block
Force-Directed Edge Severing

Edges are severed over time

@syntagmatic
syntagmatic / README.md
Last active December 22, 2015 04:49 — forked from mbostock/.block
Force-directed Splitting
@syntagmatic
syntagmatic / README.md
Last active December 22, 2015 06:39 — forked from mbostock/.block
Voronoi Lookup

Added hover highlighting to Voronoi Mitchell’s best-candidate by searching for the closest point with d3.geom.quadtree.

An improvement would be rendering highlighted cells in a separate canvas, so that they could be cleared without redrawing the entire Voronoi. This version leaves artifacts behind which get eaten away by new voronoi cells.

@syntagmatic
syntagmatic / index.html
Last active May 31, 2016 23:27 — forked from mbecica/index.html
Hyperbolic Grid
<!DOCTYPE HTML>
<head>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
</head>
<body>
<canvas width=1000 height=600></canvas>
<script type="text/javascript">
var canvas = d3.select("canvas").node();
var xgrid = 10,
ygrid = 10,
@syntagmatic
syntagmatic / README.md
Last active December 23, 2015 13:59 — forked from mbostock/.block
Selecting Countries on a Canvas Globe

Uses a second canvas with different fill colors for each country to detect which country is highlighted.

@syntagmatic
syntagmatic / README.md
Last active July 18, 2019 10:59 — forked from mbostock/.block
Github Users Worldwide
@syntagmatic
syntagmatic / README.md
Last active December 25, 2015 08:09 — forked from mbostock/.block
Canvas Force-Directed Graph