an es2015 iteration on the block Fibonacci sphere quasi-random radome from @recifs
Uses geoVoronoi
to compute triangles from a set of points on the sphere.
Antenna radomes make use of quasi-random lattices to help limiting signal degradation.
The points on the are distributed by a Fibonnaci sphere algorithm. Once could probably use Poisson-disc sampling instead.
Inspiration: Trevor Paglen’s pictures of radomes at the NSA’s Menwith Hill Station in the UK.
xxxxxxxxxx
<meta charset='utf-8'>
<style>
.polygons {
fill: #f4f4f4;
stroke: #000;
}
.polygons.found {
fill: #f00;
}
.sites {
fill: #000;
stroke: #fff;
}
</style>
<svg width='960' height='500'></svg>
<script src='https://d3js.org/d3.v4.min.js'></script>
<script src='d3-geo-voronoi.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.23.1/babel.min.js'></script>
<script src='vis.js'></script>
https://d3js.org/d3.v4.min.js
https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.23.1/babel.min.js