Skip to content

Instantly share code, notes, and snippets.

@romsson
Last active December 29, 2017 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romsson/f790403156f3b9da6a8bd4d63f79655f to your computer and use it in GitHub Desktop.
Save romsson/f790403156f3b9da6a8bd4d63f79655f to your computer and use it in GitHub Desktop.
line scribbles (grids)
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
fill: none;
stroke: black;
stroke-width: 1;
}
</style>
<body>
<script src="http://d3js.org/d3.v4.js"></script>
<script src="http://romsson.github.io/d3-gridding/build/d3-gridding.js"></script>
<script>
var margin = {
top: 20,
right: 0,
bottom: 0,
left: 0
};
var width = 600,
height = 400,
n = 250,
j = 20,
l = 15;
var gridding = d3.gridding()
.size([width, height])
.orient("left")
.mode("brick");
var line = d3.line()
.x(function(d) {
return d.x + Math.random() * j ;
})
.y(function(d) {
return d.y + Math.random() * j;
})
.curve(d3.curveBasis);
var data = d3.range(n).map(function(d, i) {
return {index: i};
});
var svgSquares = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.append("g");
svgSquares.selectAll(".line")
.data(gridding(data)).enter()
.append("path")
.attr("class", "line")
.attr("d", function(d) {
var points = d3.range(l).map(function(e) {
var res = {};
res.x = d.x + (e * d.width / l);
res.y = d.cy;
return res;
});
return line(points);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment