Iv'e been trying lately to calculate a point an ellipse
The desired point is the green point , knowing the red dots and the ellipse equation.
I've used numpy linspace to create an array on points and iterate them using zip(x axis , y axis) between the red points , and using the ellipse equation figure which of the points is the closest to 1. (which is the outcome of the ellipse equation ).
this concept works most of the time , but in some location of the red outer dot , this method doesn't seem to give good outcome
long story short, any idea how to calculate the green dot in python? p.s - ellipse might have angle, both of hes axis are known.