While I was working on camera animation playback for my upcoming game, I realized that I needed to find a way to perform constant velocity cubic spline interpolation in order to implement smooth camera movement. If you are familiar with
cubic splines, then you probably know that when a cubic spline is interpolated with constant increments of
t, the resulting velocity isn't constant, which can be a problem in some applications.
...