开发者

Drawing a bezier from multiple points

I have a se开发者_Python百科t with 50 points in x,y. I need to draw the smoothest bezier that passes in all points, or in other words, the bezier that will best fit the points.

How do I do that? thanks


I am undergoing a similar problem in 3D. It is slightly easier in 2D because lines will always intersect if not parallel.

Firstly, read up on quadratic bezier curves. Each curve is represented by three points. The line will not pass through the middle point. Thus, your middle point cannot be one of the points you are trying to fit, or it won't go through it.

Instead, the beginning and end point of your quadratic bezier curve must be two consecutive points you want it to pass through. So what is your middle point going to be?

One way of solving this (never tried it myself HENCE it might not look perfect, but Im thinking off the top of my head) is to calculate the tangents from your -1st data point to your 0th data point, and find the intersection between that and the 1st data point to the 2nd data point. Then draw the line between the 0th data point and the 1st data point using this intersection as the middle bezier curve value.

Obviously you may have trouble at the ends of the curves, that may require some inventive thinking to make them look good. (the first point has no -1st point).

Sorry about the lack of diagrams. I would draw one but I'm on an iPad.


  1. Imagine 3-point bezier curve (start-A, middle-B, end-C)

  2. Imagine a straight line from A to C.

  3. Imagine a straight line that is perpendicular to AC and goes through point B.

  4. Those two lines cross in point D.

Bezier curve will go through EXACTLY half way from D to B. In other words if you want bezier curve that goes through 3 points, you must make the second point 2 times further from start and end than the actual second point.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜