How can I find the point B(t) along a cubic Bezier curve that is closest to an arbitrary point P in the plane?
|
After lots of searching I found a paper that discusses a method for finding the closest point on a Bezier curve to a given point:
Furthermore, I found Wikipedia and MathWorld's descriptions of Sturm sequences useful in understanding the first part of the algoritm, as the paper itself isn't very clear in its own description. |
||||
|
|
|
|
|||
|
|
If someone still interested in this issue, you can find some useful info at http://jazzros.blogspot.com/2011/03/projecting-point-on-bezier-curve.html |
|||
|
|
|
Here is a good reference with an implementation in basic: |
|||||||||||
|
|
Adrian: The Graphic Gems (I) algorithm was used in the example, which is also provided in C. You can get the original algorithm from the GC book and roll your own as desired. My code works for a quad or cubic, the code supplied in the GC book is for a cubic. hope that helps,
|
|||
|
|

