Skip to content

Instantly share code, notes, and snippets.

@kobben
Last active February 8, 2018 13:41
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 kobben/15c7fe8a0a5d7269fa3d45829b4fbf1b to your computer and use it in GitHub Desktop.
Save kobben/15c7fe8a0a5d7269fa3d45829b4fbf1b to your computer and use it in GitHub Desktop.
fresh block
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
circle { fill: red; stroke: white; fill-opacity: .5;}
</style>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see in this editor!
var svg = d3.select("body").append("svg")
.attr("width", 950)
.attr("height", 600)
var cemter = svg.append("g");
var data = d3.range(10);
var radius = 300;
function angle(i) {
return (i/data.length) * 2 * Math.PI;
}
var circle = svg.selectAll("circle")
.data(data);
circle.enter()
.append("circle")
.attr("cx", function(d) {
return radius * Math.cos(angle)})
.attr("cy", function(d) {
return radius * Math.sin(angle)})
.attr("r", function(d) {return 10})
;
// var rect = svg.append("rect")
// .attr("x", 300)
// .attr("y", 300)
// .attr("width", 400)
// .attr("heigth", 200)
// ;
// var line = svg.append("line")
// .attr("x1", 300)
// .attr("y1", 300)
// .attr("x2", 400)
// .attr("y2", 200)
// ;
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment