Version: 2018.2
public static float Atan2 (float y, float x);

Description

Возвращает угол в радианах, тангенс (Tan) которого равен y/x.

Return value is the angle between the x-axis and a 2D vector starting at zero and terminating at (x,y).

Note: This function takes account of the cases where x is zero and returns the correct angle rather than throwing a division by zero exception.

no example available in C#