La función acos() en p5.js se usa para calcular el valor del arco coseno. El dominio de esta función es de -1 a +1 y el rango es de 0 a 3,14.
Sintaxis:
acos(c)
Parámetros: esta función acepta un solo parámetro c que almacena el valor entre -1 y 1.
Los siguientes programas ilustran la función acos() en p5.js:
Ejemplo 1: Este ejemplo usa la función acos() para calcular el valor del arco coseno.
function setup() { // Create Canvas of size 380*80 createCanvas(380, 80); } function draw() { // Set the background color background(220); // Set the angle in radian let angle = PI; // Compute value of cos() let c = cos(angle); // Compute value of acos() // It returns the value of PI let ac = acos(c); // Set the font size textSize(16); // Set the font color fill(color('red')); // Display result text("Value of acos is : " + ac, 50, 30); }
Producción:
Ejemplo 2: Este ejemplo usa la función acos() para calcular el valor del arco coseno.
function setup() { // Create Canvas of given size createCanvas(380, 80); } function draw() { // Set the background color background(220); let c = 0.5; // Use acos() function to calculate // arc cosine value let ac = acos(c); // Set font size textSize(16); // Set font color fill(color('red')); // Display result text("Value of acos is : " + ac, 50, 30); }
Producción:
Referencia: https://p5js.org/reference/#/p5/acos
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA