Irregular grid

Hi,
I’m a beginner and I’m trying to make an irregular grid on a flat square which I can control its maximum and minimum size cell differently in two directions, and I need suggestions to start with?
(Picture attached) Capture

Hi, something similar can be done with the Substrate component.

1 Like

Hi,
Thank you for your response, I already tried this. I don’t want a random division, my problem is having the ability to control the cell size and giving it a minimum and a maximum size.

You could start from the afore mentioned square boundary, divide it at a random location, and check whether the two, resulting subdivisions are area-wise between your minimum and maximum. If not, you discard the current subdivisions and re-roll the dice, but if they are valid you recurse and repeat, until there are no possibilities left.

I don’t know if this is possible with vanilla components. This task might require scripting (Python, C#, VB).

The answer and example file that I posted here, might also be of help to you.