Recursive Growth Sculptures

Hello! I saw such beautiful graphics based on recursive growth:


Source: Google Search

How is it possible to do stuff like that with Grasshopper?

Hello
you certainly need to be more specific because if you search
Recursive growth grasshopper
you will find many examples done with Grasshopper !

Thank you for your answer! Unfortunately, I can’t find anything that looks like that. I figured out there are some tutorials for Houdini, but not for Grasshopper.

If you have equations algorithms it could be done in Grasshopper. DENDRO OpenVdb will also surely be useful. But if you want to make animation rendering Houdiini is better.

I was also looking for something like that, but didn’t find much. Most obviously is done with Houdini. Could you please share the articles about Grasshopper and recursive growth you were thinking about?

There are many examples on the net, a simple search with Grasshopper recursive growth gives some examples.


there is also this one

You could also use tree generation to make trees using Shortest Walk
Here one example I am currently working on that will be included in my plugin.


5 minutes work
Frame-

For the images that you posted, the easiest way is:

  1. Get some start Blob: i.e. a closed (tri) mesh (or a cube or a sphere or a cucumber)
  2. Put into a loop the following:
    2a. Relax the blob (via K2) using 3 Goals: Smooth (i.e. a Laplacian on the Blob), SC (that’s tricky) and Length (i.e. Springs on per blob edges).
    2b. After each relaxation pick some rnd faces (use some min/max values), remove them from the blob (thus creating “pockets” for the future new triads), and for each create 3 Tri Meshes using the face vertices + the Normal * some min/max amplitude + the Face center (check that the center + Normal is not contained in the Blob, if yes continue on some other Face) then Append them to the blob. If after all that the blob is not closed for some reason exit the loop (life sucks).

This for instance does exacly that … but is (a) internal, (b) 100% C#



If we skip various tricky/freaky Methods the K2 part is rather elementary:

All that are a bit slow: for ,say, ~100 iterations and 30-50 new “pockets” … you’ll need several milliseconds (and some decent I9).

But why do pig ugly things like these? Go after some other good looking thing.

Isn’t this something different like in the posted images? I thought it’s necessary to use for example a 3D object and deform the mesh with it? Or at least that’s what I wanted to do.

This is interesting! So you can take a mesh and let it grow with your script? Could you please share your script?

As I said that’s internal (to the practice). It’s written for creating random trusses/envelopes and the likes … so has nothing to do with Artistic exploitations.

But … for AEC things a Recursive grow on tetrahedra is always waaaaay better because it yields a structural rigid truss. See the attached (2nd is about tensegrity) and note that I don’t care about a zillion vertices/faces … because in real-life a truss has NOT a zillion vertices/faces:

If your level in C# is above average (and given the K2 related code outlined above) you can try to write a C# that does that. The tricky thing is how to compute an amplitude value (for a given random “pocket” for the new triad Faces) plus some sort of even (or not) distribution of the “pockets”.

BTW: this “Rnd grow” may be VERY slow or “OK” (kinda) fast depending upon the whole approach/strategy. Note that the LaplacianSmooth and the SphereCollider Goals are a topic of concern.

Anyway … If you hit the wall … I could provide hints/help.