p5.js | función grados()

La función grados() en p5.js se usa para convertir un valor de medición en radianes dado a su valor correspondiente en grados.

Sintaxis:

degrees( radian )

Parámetros: esta función acepta radianes de un solo parámetro que se convertirán en grados.

Valor devuelto: Devuelve el ángulo convertido en grados.

Los siguientes programas ilustran la función grados() en p5.js:

Ejemplo 1: Este ejemplo utiliza la función de grados() para convertir el valor de medición dado en radianes a su valor correspondiente en grados.

function setup() { 
   
    // Creating Canvas size
    createCanvas(450, 140); 
} 
  
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some angles in radians
    let Rad1 = PI; 
    let Rad2 = PI / 2; 
    let Rad3 = PI / 4; 
    let Rad4 = 67; 
      
      
    // Calling to degrees() function
    let A = degrees(Rad1);
    let B = degrees(Rad2);
    let C = degrees(Rad3);
    let D = degrees(Rad4);
      
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting converted angles into degree
    text("Converted angle in degree is: " + A, 50, 30);
    text("Converted angle in degree is: " + B, 50, 60);
    text("Converted angle in degree is: " + C, 50, 90);
    text("Converted angle in degree is: " + D, 50, 110);
} 

Producción:

Ejemplo 2: Este ejemplo usa la función de grados() para convertir el valor de medición dado en radianes a su valor correspondiente en grados.

function setup() { 
   
    // Creating Canvas size
    createCanvas(450, 140); 
} 
  
function draw() { 
       
    // Set the background color 
    background(220); 
      
    // Calling to degrees() function with different
    // radians value as parameter
    let A = degrees(PI/2);
    let B = degrees(PI/3);
    let C = degrees(PI/4);
    let D = degrees(PI/PI);
      
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting converted angles into degree
    text("Converted angle in degree is: " + A, 50, 30);
    text("Converted angle in degree is: " + B, 50, 60);
    text("Converted angle in degree is: " + C, 50, 90);
    text("Converted angle in degree is: " + D, 50, 110);
}  

Producción:

Referencia: https://p5js.org/reference/#/p5/degrees

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *