joseanu
11/15/2017 - 5:07 PM

tiempolunar

tiempolunar

<!DOCTYPE html>
<meta charset="utf-8">
<style>
</style>

<svg width="960" height="1060">
  <circle cx="480" cy="530" r="225"/>
</svg>

<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
const svg = d3.select("svg");
const width = +svg.attr("width");
const height = +svg.attr("height");
const radius = Math.min(width, height) / 2;


</script>