0

I have been playing around with simple cellular automata in Python on a square grid, using matplotlib.

Which Python based tools would be most useful in helping me work with cellular automata on hexagonal grids?

Community
  • 1
  • 1
bzm3r
  • 3,113
  • 6
  • 34
  • 67
  • Unfortunately, your question is not clear and sufficiently detailed as it is. Please rephrase, add code, add explanations, etc or you will be downvoted (not a threat, simply a concern) – sshashank124 Apr 02 '14 at 07:44
  • @sshashank124 What's not clear about it, and what further detail would you require? I have added some links to the question, in an effort to provide some more detail. – bzm3r Apr 02 '14 at 07:52

1 Answers1

1

You need to represent the grid as a hextile. Please look at this post which discusses how to represent a hexagonal grid in memory: How do I represent a hextile/hex grid in memory?

Community
  • 1
  • 1