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


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


p5.j​​s中的sqrt()函数用于获取任何输入数字的平方根。

用法:

sqrt(n)

参数:此函数接受单个参数n,该参数n为输入非负数,其平方根正在计算中。


返回值:它返回任何输入数字的平方根。

以下示例程序旨在说明p5.js中的sqrt()函数:

例:本示例使用sqrt()函数获取输入数字的平方根。

function setup() {  
   
    // Create Canvas of size 270*80  
    createCanvas(350, 80);  
}  
   
function draw() {  
       
    // Set the background color  
    background(220);  
       
    // Initialize the parameter  
    let a = 25;  
    let b = 16;  
       
    // Call to sqrt() function  
    let x = sqrt(a); 
    let y = sqrt(b);  
       
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
       
    // Getting output 
    text("Square root of 25 is: " + x, 50, 30); 
    text("Square root of 16 is: " + y, 50, 50);  
} 

输出:

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



相关用法


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