CoffeeScript Math - atan2 ()

La description

le atan2()La méthode accepte deux nombres et renvoie la valeur de l'arc tangente en radians. Cette méthode renvoie une valeur numérique comprise entre -pi et pi représentant l'angle thêta d'un point (x, y).

Syntaxe

Voici la syntaxe de atan2()méthode de JavaScript. Nous pouvons utiliser la même méthode dans le code CoffeeScript.

Math.atan( x )

Exemple

L'exemple suivant montre l'utilisation du atan2()méthode dans CoffeeScript. Enregistrez ce code dans un fichier avec un nommath_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

Ouvrez le command prompt et compilez le fichier .coffee comme indiqué ci-dessous.

c:\> coffee -c math_atan2.coffee

Lors de la compilation, il vous donne le JavaScript suivant.

// 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);

Maintenant, ouvrez le command prompt à nouveau et exécutez le fichier CoffeeScript comme indiqué ci-dessous.

c:\> coffee math_atan2.coffee

Lors de l'exécution, le fichier CoffeeScript produit la sortie suivante.

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