Trying to create a stretched plastic form

Hello, I am trying to recreate a script I saw online, from a website about Bioplastic Morphologies https://wewanttolearn.wordpress.com/2013/03/01/bioplastic-morpholgies/

They have an image of the steps but I am having trouble following it


Also, would there be a way to twist the top? So the volume has a Twisted Fluted effect?

Hi,
this seems like quite a complex procedure (though I guess you could approximate the results with a non-automated result, by eye-balling it)
Do you JUST want to make a shape that looks like the one in the pic, or do you want to create a script that recreates the whole procedure?

If itā€™s the first case, I would say itā€™s very easy
If itā€™s the second, It looks to me as something quite complicated. which would probably require coding.

This is the first case,(rough approximation)
It doesnā€™t work with points, itā€™s much less ā€˜organicā€™ than the process they describe and it doesnā€™t bulge in the center. But itā€™s a 20 min ā€œcheapā€ alternative to months of coding.
slime.gh (26.5 KB)

few minutes in fact

image
You talk the talkā€¦

Have you tried Kangaroo Physics?

Hello Miguel,
I have tried Kangaroo since this is a form based on surface tension but I am still having trouble creating a script that acts like a stretchy gum/plastic.

Hello Aris,
I am more interested in the form, less so the recreation of the fabrication process. The idea is that this would turn into some grand air traffic control tower for my studio project.

Oh and in the end, well it seems ambitious at the moment, I would like to create this form using modular concrete panels. A set to connect the building to the floor, a set for the middle shaft, and one to connect the building to the sky. Iā€™m not sure if I am explaining it in the best way but modules that have rotational symmetry that twist at the same rate.

This is amazing, Thank you!

What was wrong with the diagram that the website provided? And why doesnā€™t it work with points?

It requires more work and Iā€™m lazy!
What they showed is very sophisticated. What I made is a quick solution.
If you want a highly organic form you are not going to avoid hard workā€¦

1 Like

You are correct, this is a good start. You have been very gracious, thank you.

Unless someone else does it for himā€¦ I canā€™t read or follow all of the instructions but hereā€™s what I got from it:

This version uses random points and Shortest Walk to generate the base pattern of peripheral points, then copies those points up twice with separate controls for height, center point of scaling and rotation, and scale and rotation (+/-) values. As usual, Loft options and the Random ā€˜Seedā€™ (ā€˜Sā€™ input) will alter the results.


plastic_form_2018Feb15a.gh (20.5 KB)

Parametric variations. Will it stand up? Visual alignment from top view and Cap Holes to get COGā€¦

1 Like

This is the essence of the Shortest Walk portion of the code above. The Shortest Walk ā€˜Wā€™ output is a list of polylines from each random point to the Avr point. There are many duplicate segments since shorter paths are ā€œsub curvesā€ of the longer paths. I was only interested in the outermost end points so I didnā€™t bother trying to eliminate the duplicate segments, I just used Cull Duplicates with the ā€˜Cull Allā€™ option to ignore all the Disc points except the outer ones, which were unique. The purple group then uses AlongCrv to sort those points using a circle as a reference, as you can see by the sequence of point numbers.


ShortWalk_2018Feb15a.gh (15.6 KB)

1 Like

Thank you for adding the various variations of the script

1 Like