La función tan() en p5.js se usa para calcular el valor de la tangente de un ángulo en radianes tomado como parámetro de entrada de la función.
Sintaxis:
tan(angle)
Parámetros: Esta función acepta un único parámetro ángulo que es un ángulo en radianes cuyo valor de tangente se desea calcular.
Valor devuelto: Devuelve el valor de la tangente de un ángulo en radianes tomado como parámetro de entrada.
El siguiente programa ilustra la función tan() en p5.js:
Ejemplo: Este ejemplo usa la función tan() para obtener el valor de la tangente de un ángulo en radianes.
function setup() { // Create Canvas of given size createCanvas(550, 130); } function draw() { // Set the background color background(220); // Initialize the parameter with // angles in radian only let a = 0; let b = 8.9; let c = 47; let d = 5; // Call to tan() function let v = tan(a); let w = tan(b); let x = tan(c); let y = tan(d); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting tangent value text("Tangent value of angle 0 (in radian) is : " + v, 50, 30); text("Tangent value of angle 8.9 (in radian) is : " + w, 50, 50); text("Tangent value of angle 47 (in radian) is : " + x, 50, 70); text("Tangent value of angle 5 (in radian) is : " + y, 50, 90); }
Producción:
Nota: En el código anterior, el ángulo de entrada debe estar en radianes. Para convertir los grados a radianes utilice la siguiente fórmula:
Angles_in_radian = (π/180)*angles_in_degree
Referencia: https://p5js.org/reference/#/p5/tan
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