I am reading an article on cubic interpolation of Hermite. In the section of the cardinal spline curve, they give a formula for calculating the tangents at the end points defined by the formula:
Ti = a * ( Pi+1 - Pi-1 )
However, if I have two points P1and P2then findT1
T1 = a*(P2-P0).
I need to calculate this, but what should be my point P0? Similarly find T2I need to know P3. Can this explain this?
Tarun source
share