Visualization for yoga gunas.
Last active
March 2, 2020 02:44
-
-
Save kylenstone/37d10f7939d1a1fc269b3fabb57e4b97 to your computer and use it in GitHub Desktop.
Visualization for yoga gunas.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script> | |
var w = 960, | |
h = 500, | |
nodes = [], | |
node; | |
var vis = d3.select("body").append("svg") | |
.attr("width", w) | |
.attr("height", h); | |
var force = d3.layout.force() | |
.nodes(nodes) | |
.links([]) | |
.size([w, h]); | |
force.on("tick", function(e) { | |
vis.selectAll("path") | |
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); | |
}); | |
setInterval(function(){ | |
// Add a new random shape. | |
nodes.push({ | |
type: d3.svg.symbolTypes[~~(Math.random() * d3.svg.symbolTypes.length)], | |
size: Math.random() * 300 + 100 | |
}); | |
// Restart the layout. | |
force.start(); | |
vis.selectAll("path") | |
.data(nodes) | |
.enter().append("path") | |
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }) | |
.attr("d", d3.svg.symbol() | |
.size(function(d) { return d.size; }) | |
.type(function(d) { return d.type; })) | |
.style("fill", "steelblue") | |
.style("stroke", "white") | |
.style("stroke-width", "1.5px") | |
.call(force.drag); | |
}, 1000); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment