I need to calculate a point on ellipse based on elliptic rotation angle. Though I am using the same formula as for circle (a = horizontal radius, b = vertical radius): $$ x = a * cos(\alpha) $$ $$ y = b * sin(\alpha) $$
Wierd thing is happening as per the following diagram:

Searching online I find that my formula is the standard formula of calculation - however, as per my understanding (and maybe I am missing something), 45degrees should be in exact 50% from start point (0) to straight angle (90deg.) So if we go in radians, computer using it for easy arc calculation. Here it becomming somehow incorrect....
The question: Is there any way to "correctly" calculate rotation angle so it follows up rotation length (like in circle radians are)?
Thanks a lot
Ellipses are really hard to work with, since there is no simple, exact formula for their perimeter. (There are simple formulas but they are not exact, and there are exact formulas but they are not simple.) Constant increase in angular measure does not correspond to a constant increase in arclength, so special tools are needed that are beyond my knowledge and understanding.