Inertial Bounce

// Inertial Bounce (moves settle into place after bouncing around a little)
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n–;
}
}
if (n == 0){
t = 0;
}else{
t = time – key(n).time;
}

if (n > 0){
v = velocityAtTime(key(n).time – thisComp.frameDuration/10);
amp = .05;
freq = 4.0;
decay = 2.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}

Jumpy wiggle

// Wiggle, but jumpy
posterizeTime(5);
wiggle(5,35)

Wiggle, with sliders

// Ever wanted to keyframe wiggle?
It’s basically “wiggle(FREQUENCY,VALUE)”
but then I’ve assigned frequency to a slider, and VALUE to a slider, meaning that you can keyframe it.

Download the project file (CS5)