I use blender since a couple of years, first mostly for rendering, but more and more for modeling, cloth sims and sometimes rigging. Now I am trying to get more into geometry nodes. I am still very much beginner to geometry nodes, I try to figure out how to get the nodes doing what I want it to do
Currently I am having a challenge with making a radial mosaic pattern on any mesh object. I want to be able to kind of choose the starting/center point of the radial pattern and be able to choose the size of the tiles and distance between them. I already have a setup, but this one only works for very simple shapes, very straight forward, pill kind of shapes. But I also want it to work for bended L shapes or maybe even U shapes.
My steps are as follows:
Create an intersection plane to get an intersection curve from the mesh (boolean with the mesh)
Evenly divide that curve based on distance (row/vertical distance between tiles)
Raycast those points to a center line
Create intersection planes on these points, boolean that with the mesh, to get something similar as isocurves.
Divide all these âisocurvesâ based on distance, this is the horizontal distance between tiles
Create tiles on these points
There is also some more nodes for randomization and some for getting the tiles oriented correctly.
The main problem is step 2. If the extracted curve is too complex or repeated in y or x direction, you will get duplicate points and therefore duplicated isocurved, etc.
Also of course the intersection planes in step 4 should be perpendicular to the line created in step 1.
All very difficult to explain, but maybe there is somebody how could have a look at my file and point me in the right direction? Thank you!
I think is hard topological problem not sure what is correct way to soling it.
But here is example creating geodesic distance and using it to create isolines with marching triangles algorithm get get somewhat decent results. Note this only works on triangular meshes, you can triangulate mesh by highly subdividing it, adding displace modifier with high frequency and use decimate modifier
Hi Higgsas, I tried your file, but itâs not working because itâs linking to your nodegroups in an external file. Is it something you can inlude, so I can check it out? Thank you in advance.
One more question. Would it be somehow possible to find the vertex id for the starting points of radial pattern by proximity? So instead of going into edit mode and finding the ID that way, it would be great if it would be possible to do it by moving a proximity object to the desired location. I was playing around, but I couldnât get it working.
This way it would also be possible to generate the triangulated mesh within geometry nodes.
Hi Higgsas, Thank you for the prompt reply! Thank you for the solution. Your file had some unique node groups, so it didnât work, but I could distillate the solution from your nodetree, thanks! I had some other nodes for triangulation, probably much more costly, but it works!