CoffeeScript Math - atan2 ()
Descrizione
Il atan2()il metodo accetta due numeri e restituisce il valore arcotangente in radianti. Questo metodo restituisce un valore numerico compreso tra -pi e pi che rappresenta l'angolo theta di un punto (x, y).
Sintassi
Di seguito è riportata la sintassi di atan2()metodo di JavaScript. Possiamo usare lo stesso metodo nel codice CoffeeScript.
Math.atan( x )
Esempio
L'esempio seguente mostra l'utilizzo di atan2()metodo in CoffeeScript. Salva questo codice in un file con nomemath_atan2.coffee.
value = Math.atan2 90,15
console.log "The arc tangent value of 90,15 is : " + value
value = Math.atan2 15,90
console.log "The arc tangent value of 15,90 is : " + value
value = Math.atan2 0,-0
console.log "The arc tangent value of 0,-0 is : " + value
value = Math.atan2 +Infinity, -Infinity
console.log "The arc tangent value of +Infinity, -Infinity is : " + value
Apri il command prompt e compila il file .coffee come mostrato di seguito.
c:\> coffee -c math_atan2.coffee
Durante la compilazione, ti dà il seguente JavaScript.
// Generated by CoffeeScript 1.10.0
(function() {
var value;
value = Math.atan(-1);
console.log("The arc tangent value of -1 is : " + value);
value = Math.atan(null);
console.log("The arc tangent value of null is : " + value);
value = Math.atan(20);
console.log("The arc tangent value of 20 is : " + value);
}).call(this);
Ora apri il file command prompt di nuovo ed eseguire il file CoffeeScript come mostrato di seguito.
c:\> coffee math_atan2.coffee
All'esecuzione, il file CoffeeScript produce il seguente output.
The arc tangent value of 90,15 is : 1.4056476493802699
The arc tangent value of 15,90 is : 0.16514867741462683
The arc tangent value of 0,-0 is : 3.141592653589793
The arc tangent value of +Infinity, -Infinity is : 2.356194490192345