Return to Snippet

Revision: 48668
at July 7, 2011 11:05 by bchapman


Initial Code
// Stepped Interpolation (Stutter)

// Variables
stepSize = 5; // in Frames

// Math
stepRate = 1/framesToTime(stepSize);
nthTime = Math.floor(time/framesToTime(stepSize))/stepRate;
valueAtTime(nthTime);

Initial URL


Initial Description
Stepped Interpolation mode which stutters movement.

Initial Title
Stepped_Interpolation

Initial Tags


Initial Language
JavaScript