Experiment in creating regular grids from circular paths, step 1: General concept and reference grids.
xxxxxxxxxx
<html>
<head>
<style>
html, body, div, svg {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #app {
width: 100%;
height: 100%;
position: relative;
}
body {
overflow: hidden;
}
.line {
fill: none;
}
@media print {
.dg { display: none }
}
</style>
</head>
<body>
<div id="app"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.6.2/dat.gui.min.js"></script>
<script src="script.js"></script>
</body>
</html>
https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.js
https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.6.2/dat.gui.min.js