Hello, my name is Matteo and i’m trying to reverse engeneer the Landesgartenschau exhibition hall.
Searcing on the web i’ve found an old discussion were the PlanarHex comand was used to generate the surfaces but there are many issues with that method and the result is not good.
To make a better solution i’ve decided to remodelling all the surface and to make the division of it i’ve used the “sphere” comand to make a better “population division” of the surface as you can see in the pictures 4 and 5
The problem is that i don’t know how to continue with the work; do you have any suggestions?
I found also this (Planar Remeshing - Grasshopper) but that plug-in is nowhere to be found.
I found this thread too but im not been able to install the plug-in, it is the same that they talk about in this thread: https://www.grasshopper3d.com/profiles/blogs/planar-remeshing ; maybe i did something wrong, however between the downloadable files there isn’t the GHA file, how can i install it?
This is a very good “method” but the problem remains, the exagon subdivision is wrong, my goal is to apply the “hexagon pattern” on my “sphere population” but i don’t now how to make the hexagons interact with each other making them keep the centers of the spheres, just like in the video at the min 00:59 as said by @DavidLeon
I have a working “circles physics” but i have not the hexagons
By the looks of the video, when the circle packing is performed, the particles, agents or whatever we want to call them, are not only keeping a threshold between them but also following a vector field. Perhaps this vector field indicates the surface curvature at every evaluated point. Another thing is that the panels produced all have some kind of connectivity algorithm because as the video showed, they are not all hexagonal. So there must he some rules to derive such behaviour. So basically, the first thing you would also need to know is how to code as I don’t think there are a combination of plugins that can do all this iterative calculations at the same time. Perhaps you can use custom K2 goals for the circle packing, but this involves you being able to code. On the other hand @Petras_Vestartas has a nice plugin called NGon, perhaps he can shed some light on you on how he achieved the several types of NGon meshes in his plugin.
It is the answer I most feared but also expected, i think i’ll continue with the Planar Hex subdivision to make a “primal” surface subdivision and after that i’ll modify all the surfaces manually
Guess point 2 will also need to include some kind of hash table to not create duplicate edges between vertices. Inside RTree, there would be a condition to check if a vertex already has an edge to another vertex. Potentially each vertex will need a hash table to store its current neighbours and it will need to be a public property, in order for a vertex to have access to the data of other vertices and Visa versa. Each hash table would have its contents updated at every frame. This now gets us on a debate between the efficiencies of different mesh data structures that are out there. In the end this can also be combined with a half edge data structure or something
This is the paper from Long, at one step it explains two methods, one is tangent plane that works on positive and negative curvature another one that is better, but works on positive curvature only.
Also you may ask Miro to share the code:
If someone would do it public, would be interesting to follow.