La función atan() en p5.js se usa para calcular el inverso de tan() o el arco tangente de un valor que oscila entre -Infinito e Infinito (exclusivo) y da como resultado el rango de -π/2 a π/2 .
Sintaxis:
atan(P)
Parámetros: Esta función acepta un parámetro “P” que es un valor que va de -1 a 1 y cuyo arco tangente se calcula.
Valor devuelto: Devuelve el arco tangente de un valor y su rango está entre -π/2 a π/2.
El siguiente programa ilustra la función atan() en p5.js:
Ejemplo: Este ejemplo usa la función atan() para obtener el arco tangente de un valor .
function setup() { // Create Canvas of size 270*80 createCanvas(550, 130); } function draw() { // Set the background color background(220); // Initialize the parameter with some values let a = 0; let b = 88; let c = -1; let d = -0.5; let e = 5; // Call to atan() function let v = atan(a); let w = atan(b); let x = atan(c); let y = atan(d); let z = atan(e); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting arc tangent value text("Arc tangent value of 0 is : " + v, 50, 30); text("Arc tangent value of 88 is : " + w, 50, 50); text("Arc tangent value of -1 is : " + x, 50, 70); text("Arc tangent value of -0.5 is : " + y, 50, 90); text("Arc tangent value of 5 is : " + z, 50, 110); }
Producción:
Referencia: https://p5js.org/reference/#/p5/atan
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA