vote up 2 vote down star

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!

flag
Does it matter what kind of curve? Because if you just need to compute the center and radius of the circle defined by these 3 points, you could check: planetmath.org/encyclopedia/… – CaptainAwesomePants Jul 7 at 0:23

5 Answers

vote up 2 vote down

A circle will pass through three points on a plane. This page explains the geometery: http://www.mathopenref.com/const3pointcircle.html

link|flag
yes, in 2D three points define a unique circle. – JustJeff Jul 7 at 0:04
is there an echo in here? – Argalatyr Jul 7 at 0:59
vote up 2 vote down

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)

link|flag
Bezier splines don't generally pass through all points though do they? Just the first/last IIRC – CapBBeard Jul 7 at 1:09
@CapBBeard -- ah, you may be right about that. they may just get close to the middle ones. – JustJeff Jul 7 at 2:57
They may not even get close to the middle ones. There are guarantees, but they don't include closeness. A Bezier curve with three points will hit each endpoint, but will curve so that it misses the middle one (unless they're all on a line). – David Thornley Jul 7 at 17:14
vote up 1 vote down

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 :)

link|flag
vote up 0 vote down

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!.

link|flag
vote up 0 vote down

This is what I'm looking for:

http://img27.imageshack.us/img27/3692/curve.png

link|flag
That could be anything. – ldigas Jul 7 at 17:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.