La función fract() en p5.js se usa para encontrar la parte fraccionaria de un número. Se puede representar matemáticamente como {x} donde ‘x’ es el número.
Sintaxis:
fract( num )
Parámetros: esta función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación.
- num: Este es un número del cual se debe averiguar la parte fraccionaria.
Valor devuelto: Devuelve un número con la parte fraccionaria del número dado.
El siguiente ejemplo ilustra la función fract() en p5.js:
Ejemplo:
function setup() { createCanvas(600, 200); textSize(22); text("Move the slider to observe the effects"+ " of the fract() function", 20, 30); sliderElem = createSlider(-5, 5, 0, 0.0001); sliderElem.position(20, 50); } function draw() { clear(); text("Move the slider to observe the"+ " effects of the fract() function", 20, 30); sliderVal = sliderElem.value(); // Find the fractional part of the number fractionalVal = fract(sliderVal); text("The slider value is: " + sliderVal, 20, 100); text("The fractional value is: " + fractionalVal, 20, 120); }
Producción:
Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/reference/#/p5/fract
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA