La función radians() en p5.js se usa para convertir un valor de medición de grado dado a su valor correspondiente en radianes.
Sintaxis:
radians( degrees )
Parámetros: esta función acepta grados de un solo parámetro que se convertirán en radianes.
Valor devuelto: Devuelve el valor de ángulo convertido en radianes.
Los siguientes programas ilustran la función radianes() en p5.js:
Ejemplo 1: Este ejemplo usa la función radianes() para convertir un grado dado a sus radianes correspondientes.
function setup() { // Creating Canvas size createCanvas(450, 140); } function draw() { // Set the background color background(220); // Initializing some angles in degree let Deg1 = 0; let Deg2 = 30; let Deg3 = 60; let Deg4 = 90; // Calling to radians() function. let A = radians(Deg1); let B = radians(Deg2); let C = radians(Deg3); let D = radians(Deg4); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting converted angles into radians text("Converted angle in radian is: " + A, 50, 30); text("Converted angle in radian is: " + B, 50, 60); text("Converted angle in radian is: " + C, 50, 90); text("Converted angle in radian is: " + D, 50, 110); }
Producción:
Ejemplo 2: Este ejemplo usa la función radianes() para convertir un grado dado a sus radianes correspondientes.
function setup() { // Creating Canvas size createCanvas(450, 140); } function draw() { // Set the background color background(220); // Calling to radians() function with different // degrees value as parameter let A = radians(90); let B = radians(180); let C = radians(60); let D = radians(45); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting converted angles in radians text("Converted angle in radian is: " + A, 50, 30); text("Converted angle in radian is: " + B, 50, 60); text("Converted angle in radian is: " + C, 50, 90); text("Converted angle in radian is: " + D, 50, 110); }
Producción:
Referencia: https://p5js.org/reference/#/p5/radians
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