当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js fract()用法及代码示例


p5.j​​s中的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); 
}

输出:

fract-slider-example

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

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

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




相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.js | fract() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。