Re: Need to render some entities moving across a grid

2013-06-18 Thread Gary Johnson
Hi there, I have an IMO fairly straightforward method for doing this that I wrote for use in my own flow modelling code. The idea is that you create a matrix (vector of vectors in my case) containing refs all initialized to some base value (e.g., 0). Then I wrap my with-animation macro

Need to render some entities moving across a grid

2013-06-17 Thread vemv
I'm implementing a program D. Hofstadter describes in *Fluid Concepts: * https://github.com/vemv/jumbo/* *Even in the original text, concurrency/parallelism is a crucial part of the domain so Clojure is super well-suited. While visualising the carried-in process is not a goal of the project,

Re: Need to render some entities moving across a grid

2013-06-17 Thread Gary Trakhman
For something quick and dirty, have you taken a look at quil? It's pretty easy to get started. https://github.com/quil/quil On Monday, June 17, 2013, vemv wrote: I'm implementing a program D. Hofstadter describes in *Fluid Concepts: * https://github.com/vemv/jumbo/* *Even in the original