Recent content by mishalkk
-
M
Undergrad Get y from x on the cardinal spline curve
Hi, Thank you for your reply :) http://algorithmist.wordpress.com/2009/09/28/cardinal-splines-part-2/ Cardinal splines specify the tangents at interior points based on the vector from previous point to subsequent point. Each tangent is parallel to this vector and some multiple of its... -
M
Undergrad Get y from x on the cardinal spline curve
Thank you .I have followed the above method. Formula : P(t) = s(-t3 + 2t2 – t)P1 + s(-t3 + t2)P2 + (2t3 – 3t2 + 1)P2 + s(t3 – 2t2 + t)P3 + (-2t3 + 3t2)P3 + s(t3 – t2)P4 where P is the point on the curve,P1,P2,P3,P4 are the actual points, s is the tanget and it is inversely proportional to t... -
M
Undergrad Get y from x on the cardinal spline curve
Hi, I have implemented the cardinal spline curve. ref link:- http://www.ibiblio.org/e-notes/Splines/Cardinal.htm My requirement is to get the Y Value along the spline curve for a given x.Please look at the image attached below. Here P1,P2,P3,P4 are my Points and cardinal spline passes...