Circle Packing
en.wikipedia.org
Circle Packing
1–10 of 32 posts
Re: Circle Packing
#2Re: Circle Packing
#3Circle packing is available as an example in D3, highly recommended.
Re: Circle Packing
#4Re: Circle Packing
#5Double packing, packing shapes inside shapes inside shapes is O(N^k) as far as I can tell.
Re: Circle Packing
#6John Conway [1] (who recently passed away due to COVID) wrote a famous book about it: Sphere Packings, Lattices and Groups -- which summarizes the subject concisely.
A recent (2017) break through, was the proof that the Leech Lattice [2] yields the optimal sphere packing in dimension 24 [3]. The error correcting code constructed from this lattice is the Binary Golay Error Correcting Code [4]. It is able to correct 3 bits for every 24 bits, and maximally efficient in doing so. It was used to communicate with the Voyager probes.
[1] https://en.wikipedia.org/wiki/John_Horton_Conway [2] https://en.wikipedia.org/wiki/Leech_lattice [3] https://arxiv.org/pdf/1603.06518.pdf [4] https://en.wikipedia.org/wiki/Binary_Golay_code
Re: Circle Packing
#7Sphere packings are quite a deep and fascinating area of pure mathemaics. It has close relations to coding theory, lattice theory, number theory, modular forms. John Conway [1] (who recently passed away due to COVID) wrote a famous book about it: Sphere Packings, Lattices and Groups -- which summarizes the subject concisely. A recent (2017) break through, was the proof that the Leech Lattice [2] yields the optimal sp…
Re: Circle Packing
#8I like the natural noise you get from Poisson Disc Sampling [1]
Re: Circle Packing
#9I was surprised to see the Wikipedia page didn’t mention any best-effort algorithms but I guess they can’t list everything. I like the natural noise you get from Poisson Disc Sampling [1] [1] https://bl.ocks.org/mbostock/dbb02448b0f93e4c82c3
It is a lot like a bubble sort in that it is O(n^2) and is useful in practice on tiny sets and as a benchmark.
(Also that link is very cool, but it looks closer to n-rooks / latin hypercube sampling in that it used a grid, which means it won't work in higher dimensions)
Re: Circle Packing
#10Sphere packings are quite a deep and fascinating area of pure mathemaics. It has close relations to coding theory, lattice theory, number theory, modular forms. John Conway [1] (who recently passed away due to COVID) wrote a famous book about it: Sphere Packings, Lattices and Groups -- which summarizes the subject concisely. A recent (2017) break through, was the proof that the Leech Lattice [2] yields the optimal sp…
Glad to hear there were breakthroughs in the field, thanks for the heap of links for me to delve into. :)