EDIT:
You've asked how to turn the bezier into a polynomial. Well, you start with the normal bezier curve equation:
x(t) = x0 * (1-t)³ + 3*x1*(1-t)²*t + 3*x2*(1-t)*t² +x3*t³(x0 to x3 are the x-values of the four control-points of the curve).
Then you multiply out all terms one after another and sort them by the powers of t. Unfortunately I don't have my math package running on the computer I'm writing on, and I'm to lazy to do it on paper :-) So if anyone has mathlab running, could you please edit this answer and add the expanded version?
Anyway, since you're not really interested in the polynomial but just the derivate of it things are a bit easier. You can get the coefficients directly (here shown for x only):
A = 3.0f*(x[1] - x[0]);B = 6.0f*(x[2] - 2.0f*x[1] + x[0]);C = 3.0f*(x[3] - 3.0f*x[2] + 3.0f *x[1] - x[0]);Using these three values (A,B,C) the polynomial of the first derivate looks like this:
x(t) = A*t^2 + B*t + CNow plug A,B and C into a root solver for quadratic polynomials and you're done. For reference I use the solver C-code below:
int GetQuadraticRoots (float A, float B, float C, float *roots) if ((C < -FLT_EPSILON) || (C > FLT_EPSILON)) float d,p; // it is a cubic: p = B*B - 4.0f * C*A; d = 0.5f / C; if (p>=0) p = (float) sqrt(p); if ((p < -FLT_EPSILON) || (p > FLT_EPSILON)) // two single roots: roots[0] = (-B + p)*d; roots[1] = (-B - p)*d; return 2; } // one double root: roots[0] = -B*d; return 1; } else { // no roots: return 0; } // it is linear: if ((B < -FLT_EPSILON) || (B > FLT_EPSILON)) // one single root: roots[0] = -A/B; return 1; // it is constant, so .. no roots. return 0;
