> Functions
Converts Cartesian coordinates (x, y) to polar coordinates (r, theta). This function returns the theta angle between -PI and PI using the signs of the arguments.
Be careful, the arguments are indeed in the order Y* then *X, which is a little counter-intuitive.
atan2(1, 1) // PI / 4 atan2(-1, 1) // -PI / 4 atan2(1, -1) // 3 * PI / 4 atan2(-1, -1) // -3 * PI / 4
Impossible de charger les données du jeu.
Vérifiez votre connexion et réessayez.