I have a line from A to B and a circle positioned at C with the radius R. This is in two dimensions.
Which is a good algorithm to use to check whether the line intersects the circle? And at what coordinate along the circles edge it occurred?
|
4
|
I have a line from A to B and a circle positioned at C with the radius R. This is in two dimensions. Which is a good algorithm to use to check whether the line intersects the circle? And at what coordinate along the circles edge it occurred?
|
||||||||||||
|
|
|
If E is the starting point of the ray, .. and L is the end point of the ray, .. and C is the center of sphere you're testing against .. and r is the radius of that sphere Compute: d = L - E ; // Direction vector of ray, from start to end f = E - C ; // Vector from center sphere to ray start Then the intersection is found by.. Plugging: P = E + t * d (this is a parametric equation: Px = Ex + tdx Py = Ey + tdy ) into (x - h)2 + (y - k)2 = r2 (( (h,k) = center of circle. note: we've simplified the problem to 2D here, the solution we get applies in 3D however )) to get: 1. expand x2 - 2xh + h2 + y2 - 2yk + k2 - r2 = 0 2. plug x = ex + tdx y = ey + tdy ( ex + tdx )2 - 2( ex + tdx )h + h2 + ( ey + tdy )2 - 2( ey + tdy )k + k2 - r2 = 0 3. Explode ex2 + 2extdx + t2dx2 - 2exh - 2tdxh + h2 + ey2 + 2eytdy + t2dy2 - 2eyk - 2tdyk + k2 - r2 = 0 4. group t2( dx2 + dy2 ) + 2t( exdx + eydy - dxh - dyk ) + ex2 + ey2 - 2exh - 2eyk + h2 + k2 - r2 = 0 5. Finally, t2( _d * _d ) + 2t( _e * _d - _d * _c ) + _e * _e - 2( _e*_c ) + _c * _c - r2 = 0 ** Where _d is the vector d and * is the dot product. 6. And then, t2( _d * _d ) + 2t( _d * ( _e - _c ) ) + ( _e - _c ) * ( _e - _c ) - r2 = 0 7. So letting _f = _e - _c t2( _d * _d ) + 2t( _d * _f ) + _f * _f - r2 = 0 So we get: t2 * (d DOT d) + 2t*( f DOT d ) + ( f DOT f - r2 ) = 0 So solving the quadratic equation:
float a = d.Dot( d ) ;
float b = 2*f.Dot( d ) ;
float c = f.Dot( f ) - r*r ;
float discriminant = b*b-4*a*c;
if( discriminant < 0 )
{
// no intersection
}
else
{
// ray didn't totally miss sphere,
// so there is a solution to
// the equation.
discriminant = sqrt( discriminant );
float t1 = (-b + discriminant)/(2*a);
float t2 = (-b - discriminant)/(2*a);
if( t1 >= 0 && t1 <= 1 )
{
// solution on is ON THE RAY.
}
else
{
// solution "out of range" of ray
}
// use t2 for second point
}
|
||||||||||||||
|
|
|
Okay, I won't give you code, but since you have tagged this algorithm, I don't think that will matter to you. First, you have to get a vector perpendicular to the line. You will have an unknown variable (y = ax + c; c will be unknown) - to solve for this, calculate its value when the line passes through the center of the circle (i.e. plug in the location of the circle center to the line equation and solve for c). Then calculate the intersection point of the original line and its normal. This will give you the closest point on the line to the circle. Calculate the distance between this point and the circle center (using the magnitude of the vector) and if this is less than the radius of the circle - voila, we have an intersection! |
||||||||||||||||
|
|
|
You'll need some math here: Suppose A = (Xa, Ya), B = (Xb, Yb) and C = (Xc, Yc). Any point on the line from A to B has coordinates (alpha*Xa + (1-alpha)Xb, alphaYa + (1-alpha)*Yb) = P If the point P has distance R to C, it must be on the circle. What you want is to solve
that is
if you apply the ABC-formula to this equation to solve it for alpha, and compute the coordinates of P using the solution(s) for alpha, you get the intersection points, if any exist. |
||
|
|
|
|
No one seems to consider projection, am I completely off track here? Project the vector AC onto AB. The projected vector, AD, gives the new point D. If the distance between D and C is smaller than, or equal to, R we have an intersection. |
||||
|
|
|
I would use the algorithm to compute the distance between a point (circle center) and a line (line AB). This can then be used to determine the intersection points of the line with the circle. Let say we have the points A, B, C. Ax and Ay are the x and y components of the A points. Same for B and C. The scalar R is the circle radius. Here is the algorithm
|
||
|
|
|
|
If the line's coordinates are A.x, A.y and B.x, B.y and the circles center is C.x, C.y then the lines formulae are: x = A.x * t + B.x * (1 - t) y = A.y * t + B.y * (1 - t) where 0<=t<=1 and the circle is (C.x - x)^2 + (C.y - y)^2 = R^2 if you substitute x and y formulae of the line into the circles formula you get a second order equation of t and its solutions are the intersection points (if there are any). If you get a t which is smaller than 0 or greater than 1 then its not a solution but it shows that the line is 'pointing' to the direction of the circle. |
|||
|
|
|
|
If you find the distance between the center of the sphere (since it's 3D I assume you mean sphere and not circle) and the line, then check if that distance is less than the radius that will do the trick. The collision point is obviously the closest point between the line and the sphere (which will be calculated when you're calculating the distance between the sphere and the line) Distance between a point and a line: |
||||||||||||||||
|
|
|
You can find a point on a line that is nearest to circle center by projecting vector AC onto vector AB. Calculate the distance between that point and circle center. If it is greater that R, there is no intersection. If the distance is equal to R, line is a tangent of the circle and the point nearest to circle center is actually the intersection point. If distance less that R, then there are 2 intersection points. They lie at the same distance from the point nearest to circle center. That distance can easily be calculated using Pythagorean theorem. Here's algorithm in pseudocode:
|
|||
|
|
|
|
Another method uses the triangle ABC area formula. The intersection test is simpler and more efficient than the projection method, but finding the coordinates of the intersection point requires more work. At least it will be delayed to the point it is required. The formula to compute the triangle area is : area = bh/2 where b is the base length and h is the height. We chose the segment AB to be the base so that h is the shortest distance from C, the circle center, to the line. Since the triangle area can also be computed by a vector dot product we can determine h.
UPDATE 1 : You could optimize the code by using the fast inverse square root computation described here to get a good approximation of 1/LAB. Computing the intersection point is not that difficult. Here it goes
If h = R then the line AB is tangent to the circle and the value dt = 0 and E = F. The point coordinates are those of E and F. You should check that A is different of B and the segment length is not null if this may happen in your application. |
|||
|
|
|
This Java Function returns a DVec2 Object. It takes a DVec2 for the center of the circle, the radius of the circle, and a Line.
|
||
|
|