Hi, I'm trying to create a curve that passes through three given points in Java (I'm drawing the curves through a class that extends JPanel). How can I make it?
Thanks!
|
|
|||
|
|
|
A circle will pass through three points on a plane. This page explains the geometery: http://www.mathopenref.com/const3pointcircle.html |
||
|
|
try a google search on bezier splines. this may be a 2D solution, but should be extensible to 3D if you need it. basically, using the three points as parameters you can get an 2nd order polynomial that fits the three points .. AND its extensible, if you have N points you get an N-1 order polynomial that parametrically generates all the points from the 1st to the last, as you 'tune' a scalar parameter, oft denoted as 's'. edit/added: as was pointed out (credit CapBBeard!), Beziers don't actually hit the middle points. Lagrangian interpolation does actually hit the points, but gets ugly even more quickly as the number of points grows. (something like O(n) polynomial fractions each of order N) |
||||||
|
|
|
You should look into something like Catmull-Rom splines, which are basically curves that pass through a number of control points (in your case your three points). Here is an example I found after a quick google: http://www.mvps.org/directx/articles/catmull/ Hope this helps :) |
||
|
|
|
|
I have been reading all of your answers, and the best for what I'm looking for is the Catmull-Rom splines (thanks CapBBeard). Is there any library that implements them? or do I have to implement all of it?. The Bezier curves have the problem that JustJuff says: The control points aren't in the curve. The first I tried were the QuadCurve2D class which are Bezier Curves (I think). @John: That's a great idea. If I could find the circle that joins all the three points that would be perfect, but... How can I just draw the arc that joins the three points when I have just made that circle? Is there anyway to use the Arc2D class to do this? I have been looking for it too but I can find nothing. Also, I have to say that I have to know the medium point to modify the curve by dragging it. Thanks for all of your replies!. |
||
|
|
|
|
This is what I'm looking for: |
||
|