i want to generate a bezier curve pass through several points i input by mouse.These points are more than four,can anyone help me and give me some suggestions about how to implent it? More thanks. Good luck!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You have to solve the distance between points along the curve first to get your u & v. Generally, the shortest arc lengths between points approx. the best curve. p0 and p3 are the endpoints; f and g are two points along the curve. d1 is distance between p0 and f; d2 between f and g; d3 between g and p3. Solving for control points, p1 and p2: Let u=d1/(d1+d2+d3); v=(d1+d2)/(d1+d2+d3) This is where I link you to: |
|||
|
|
|
Just write the math into a program. There's nothing we can explain without doing your homework for you. You can start doing some honest work here: Wikipedia: Bezier Curve |
|||
|