Umeer’s Blog

Animation Programming

Entries from 2022-01-01 to 1 year

Linear Interpolation (Lerp)

This is just a quick exploration into Lerp and the Math behind it to learn the basic concepts. Formula: Vector a (Initial), Vector b (Target), float t (ratio from 0 to 1) Resulting Vector = (a.x+(b.x - a.x) * t, a.y+(b.y - a.y) * t, a.z+(b…

Animation Programming - Research Material (living document)

Animation/Game Engine Animation Programming Basics - Bobby Anguelov www.youtube.com Game Engine Architecture - Jason Gregory https://www.amazon.co.uk/Engine-Architecture-Third-Jason-Gregory/dp/1138035459 Animation Bootcamp - David Rosen ww…