I have the bounds (x from, x to ...) of an ellipse (and thus its radius and center), x and y of a point A that is in the ellipse and an angle. I want to get point B to which the angle points (from point A) and that lies on the ellipse.
This is what I can do:
center_x = (x_from + x_to) / 2
center_y = (y_from + y_to) / 2
radius_x = center_x - x_from
radius_y = center_y - y_from
How to go on?
@All: Thank you very much! The formula works perfectly well!