I tried using a raycasting-style function to do it but can't get any maintainable results. I'm trying to calculate the intersection between two tangents on one circle. This picture should help explain, http://oi54.tinypic.com/e6y62f.jpg .. I've googled + searched stackoverflow about this problem but can't find anything similar to this problem. Any help?
|
|
Well, if your variables are:
The lines from the circle center to the two points You know that a tangent is perpendicular to the line from the center. In 2D, to get a line perpendicular to a vector So your two (parametric) tangent lines are:
Then to calculate the intersection of two lines you just need to use standard intersection tests. |
|||
|
|
|
The answer by Peter Alexander assumes that you know the center of the circle, which is not obvious from your figure http://oi54.tinypic.com/e6y62f.jpg. Here is a solution without knowing the center: The point The middle point of |
|||
|
|