I'm creating a game and am having trouble designing aiming system for AI.
How do I calculate all angles at which the projectile can be launched from point $T_0(x_0,y_0)$ with launch velocity $v_0$ to reach the point $T_1(x_1,y_1)$ given the gravity $G$ and air resistance $d$?
If $d$ is 0.1, the projectile loses 10% of its speed every second.
Note, the projectile doesn't have to stop at $T_1$, it just needs to pass through the point.