Interesting Animations [and how to apply them]

http://codepen.io/soulwire/full/kqHxB
That website contains a whole bunch of formula’s for organic animation and, ill admit it i have no clue on how to apply them, once i figure out (or somebody beats me to it) i will edit this post, hopefully someone finds this useful.

That’s pretty cool. Someone would have to extend the tween library to take an arbitrary formula.

Not sure what is organic about a trig function, but anyway just replace the r function with whichever patter you want

-- circles

-- Use this function to perform your initial setup
function setup()
    t=0
end

-- This function gets called once every frame
function draw()
    -- This sets a dark background color 
    background(40, 40, 50)
    
r=math.sin(t)
ellipse(WIDTH/2,HEIGHT/2,60+r*40)
t = t + 0.1
    -- Do your drawing here
    
end