
Most of the time people want to know if a circle is colliding with a line or not (you can do that by finding the shortest distance and check if it's equal or less to the width of the radius). But what if you need to know exactly where the line is intersecting the circle?
First we need to take into account the equation of the line and the circle:
y = m x + b
(x - Cx)2 + (y - Cy)2 = r2
But before replacing the Y in the circle equation we're going to expand it, using this formula:
(a - b)2 = a2 - 2ab + b2
So:
(x - Cx)2 + (y - Cy)2 = r2 <=> x2 - 2xCx...