I really could use some help in the right direction with this. Thanks!

enter image description here

有帮助吗?

解决方案

I think that this looks like a Voronoi diagram, or some custom implementation of one, which divides a plane with lots of points into discrete areas.

Voronoi diagram

There are several algorithms for generating these diagrams, and you may want to take a look at this question to get an idea of what is easiest to implement. Fortune's algorithm is probably the most efficient, with O(n log n) time, but is also more complex to understand.

It may also simply be random points connected by random lines. It's hard to tell.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top