Definice a použití
Metoda Math.atan2() je matematická funce, která vypočítá arcus tangens ze vstupních hodnot x,y. Vrací číselnou hodnotu od - π do π radiánů.
Metoda Math.atan2() je matematická funce, která vypočítá arcus tangens ze vstupních hodnot x,y. Vrací číselnou hodnotu od - π do π radiánů.
Parametr | Popis |
---|---|
x,y | číselné souřadnice |
číslo reprezentující úhel v radiánech mezi osou X a souřadnicemi bodu (x,y)
Příklady použití
Math.atan2(90, 15);Math.atan2(15, 90);Math.atan2(±0, -0);Math.atan2(±0, +0);Math.atan2(±0, -x);Math.atan2(±0, x);Math.atan2(-y, ±0);Math.atan2(y, ±0);Math.atan2(±y, -Infinity);Math.atan2(±y, +Infinity);Math.atan2(±Infinity, x);Math.atan2(±Infinity, -Infinity);Math.atan2(±Infinity, +Infinity);
Výsledek:
1.40564764938026990.16514867741462683±PI±0±PI for x > 0±0 for x > 0-PI/2 for y > 0PI/2 for y > 0±PI for finite y > 0±0 for finite y > 0±PI/2 for finite x±3*PI/4±PI/4