📜  p5.js | fract()函数

📅  最后修改于: 2022-05-13 01:56:48.960000             🧑  作者: Mango

p5.js | fract()函数

p5.js 中的 fract ()函数用于查找数字的小数部分。它可以在数学上表示为 {x},其中“x”是数字。

句法:

fract( num )

参数:该函数接受上面提到的和下面描述的单个参数。

  • num:这是要找出小数部分的数字。

返回值:它返回一个带有给定数字小数部分的数字。

下面的示例说明了 p5.js 中的 fract ()函数

例子:

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);
}

输出:

分形滑块示例

在线编辑器: https://editor.p5js.org/

环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

参考: https://p5js.org/reference/#/p5/fract