I would like to create a maze using the following algorithm without plugins. However, I have no clue how to continue from where I am now. Currently, I have created a grid of points (parametric).
I would like to know how I can start with my textual algorithm now.
Given a current node as a parameter
Mark the current node as visited
While the current node has any unvisited neighbour nodes a. Choose one of the unvisited neighbours b. Select the vertex between the current node and the chosen node.
If there are no unvisited bordering nodes, move back to the last node with unvisited bordering nodes.
Hello
I have done some tools for Maze, I really don’t think Anemone is a good way to handle this. Using Python or C# is the better way.
2nd thing is the use of a Topology, meaning you have Points, relation between points (segments), Face/or cell.
Mesh is a good way to have this kind of topology but not the only one.
Thanks all,
Good to know. I have never tried grasshopper before so maybe this is a bit too far. I’ll try and see what I can make! Thanks for all the help!