Linear Interpolation: Formula: Given two points (x0,y0) and (x1,y1), the value at x is given by y=y0+(x1−x0)(y1−y0)(x−x0). Example: Interpolating between (x0=1) with (y0=2) and (x1=3) with (y1=4) to find (y) at (x=2), y=2+(3−1)(4−2)(2−1)=3. SLERP (Spherical Linear Interpolation):