I am trying to determine the point at which a line segment intersect a circle. For example, given any point between P0 and P3 (And also assuming that you know the radius), what is the easiest method to determine P3?

|
|
|
You have a system of equations. The circle is defined by: |
|||||
|
|
Generally,
In pseudocode,
|
|||
|
|
|
From the center of the circle and the radius you can write the equation describing the circle. From the two points P0 and P1 you can write the equation describing the line. So you have 2 equations in 2 unknowns, which you can solved through substitution.
The equation for the circle is:
The equation for the line is:
Plugging the 2nd equation into the first gives:
Similarly you can find that
The point (x,y) is the intersection point between the line and the circle, (x,y) is your answer.
|
||||
|
|
|
Go for this code..its save the time
|
|||
|
|