Click here to Skip to main content
15,886,513 members
Please Sign up or sign in to vote.
4.00/5 (2 votes)
See more:
I have curve that is displayed by collection of points connected with lines. I have to replace that kind of curve with one cubic bezier curve. I have origin and destination point, but I don't know how to calculate two control points.

Question improved:

I have curve consisting of 4 points (p0, p1, p2 and p3). p0 is origin point and p3 is destination point. p1 and p2 are two point in the middle. If I connect these 4 points I will get 3 lines. I want to replace that 3-line-curve with cubic bezire curve. To get that, I have to calculate positions of two control points of cubic bezier curve. My question is how?
In meantime I found few articles (http://www.moshplant.com/direct-or/bezier/math.html[^]) that describes how to draw cubic bezier curve, so I will try to reverse-engineer these formulas to get control points.
Posted
Updated 27-Apr-11 10:25am
v2
Comments
Manfred Rudolf Bihy 27-Apr-11 16:11pm    
Unclear to say the least.
If you only have the origin and the destination point the best you can hope for is a straight line. Please formulate your exact requirments in four or more statements.
Thanks for your cooperation!
Manfred Rudolf Bihy 27-Apr-11 16:39pm    
Thanks for improving your question! See my answer for a link to a CP article that should help you!
Member 2784779 28-Apr-11 4:13am    
Manfred, thank you for fast answer. This is what I need!

1 solution

Please have a look here: Draw a Smooth Curve through a Set of 2D Points with Bezier Primitives[^]. The article is for C# but since you didn't specify any language I thought I just post this.

Best regards,

-MRB
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 27-Apr-11 22:16pm    
Could help, my 5.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900