My tinkering with ActionScript workers continues with the implementation of a simple particle system with mutual gravitational attraction. Mutual gravitation is computationally expensive because, in a naïve implementation like mine, every particle needs to reference every other in each simulation step. There are techniques such as neighbour searching to optimise this, but I'm idea rich and time poor, so I haven't implemented any proper optimisations.