From Chaos to Order

@Xavier_Ho

Data61 — WDYK Melbourne

Randomly stamp circles


            cx += random()
            cy += random()
            decrease(opacity)
          

Directional randomness


            cx += random() * 0.2
            cy += random() * 10
          

Shepherding random numbers


            velocity = random()
            accumulating += velocity
            c += velocity + accumulating
          

More shepherding random numbers

Shepherding in 2D

Two random volecities in 2D


            c += velocity + accumulating + anotherVelocity
          

Shepherding on circle


            cy += velocities[N..N-50] + accumulates[N..N-50]
          

This slidedeck — tinyurl.com/WDYK-Order

@Xavier_Ho