Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a circle. Inside the circle is a point. I have a vector originating at this point. I'd like to know what point on the circle this vector intersects. Here is a drawing:

http://n4te.com/temp/circle.png

The red dot is the point I am trying to determine.

I know these things: the center of the circle, the origin of the vector, and the direction of the vector.

I know this is basic stuff, but I'm still having trouble. Most of the Googlings bring me to line-circle collision, which is related but not quite the same. Thanks for any help you can provide!

share|improve this question

2 Answers

up vote 7 down vote accepted

Elementary vector algebra.

O — center of circle (vector)
r — its radius       (scalar)
A — origin of ray    (vector)
k — direction of ray (vector)

Solve (A + kt - O)² = r² for scalar t, choose positive root, and A + kt is your point.

Further explanation:

. is dot product, ² for a vector is dot product of the vector with itself. Expand LHS

(A + kt - O)² = (A - O)² + 2(k.(A - O))t + k²t².

The quadratic is k²t² + 2(k.(A - O))t + (A - O)² - r² = 0. In terms of your variables, this becomes (rayVX² + rayVY²)t² + 2(rayVX(rayX - circleX) + rayVY(rayY - circleY))t + (rayX - circleX)² + (rayY - circleY)² - r² = 0.

share|improve this answer
Thanks for the response. It isn't clear to me how to go from your equation to Java code. Can you show how to solve using the following variables? circleX, circleY, radius, rayX, rayY, rayVX, rayVY – NateS Oct 11 '09 at 7:08
1  
Look up quadratic equation in the math reference of your choice. – starblue Oct 11 '09 at 8:38
I'm afraid that doesn't help. I don't understand how it works when O, A, and k are two values. ([rayX, rayY] + [rayVX, rayVY] * t - [circleX, circleY])² = r² – NateS Oct 11 '09 at 9:21
1  
You really shouldn't be trying to program geometry without a basic understanding of maths. If either rayVX or rayVY is zero, you've already got a quadratic in one variable; otherwise write one in terms of the other. – Pete Kirkham Oct 11 '09 at 9:32
What I should or shouldn't be trying to program is irrelevant. While I appreciate you may know the answer and can express it mathematically, I simply need the solution in terms I can understand. – NateS Oct 11 '09 at 9:38
show 2 more comments

Much thanks to Anton Tykhyy for his detailed answer. This was the resulting Java code:

float xDiff = rayX - circleX;
float yDiff = rayY - circleY;
float a = rayVX * rayVX + rayVY * rayVY;
float b = 2 * (rayVX * (rayX - circleX) + rayVY * (rayY - circleY));
float c = xDiff * xDiff + yDiff * yDiff - r * r;
float disc = b * b - 4 * a * c;
if (disc >= 0) {
    float t = (-b + (float)Math.sqrt(disc)) / (2 * a);
    float x = rayX + rayVX * t;
    float y = rayY + rayVY * t;
    // Do something with point.
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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