JASS Help

Atan2

native Atan2 takes [[[real|real.html]]] y, [[[real|real.html]]] x returns [[[real|real.html]]]

Возвращает угол от оси абсцисс до прямой, содержащей начало координат и точку с координатами x, y. Угол задается в радианах от до , исключая .

  • при x == 0 and y == 0 возвращает 0

  • Atan2(y,x) эквивалентен Atan(x/y), исключая y равный нулю

function [[[main|main.html]]] takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]] call ConsolePrint([[[R2S|r2s.html]]](Atan2(1, 1))) // 0.785 call ConsolePrint([[[R2S|r2s.html]]](Atan2(-1, -1))) // -2.356 endfunction
Last modified: 22 October 2024