I would like to find a cubic Bézier curve x(t) knowing that x(t):[0,1]->R². I only have the two following points : x(0) = (0,0); x(1) = (9,0).
Also, I know that the curve intersects itself orthogonally at x(1/4) and x(3/4). I think that this condition can allow me to find the two missing control points, but I don't know how to use this information.
Once I have the 4 control points, I just have to compute the sum formula using Berstein basis, and this will give me the function x(t) that I'm looking for.
Thanks for your help!