📜  p5.js |浮动()函数

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

p5.js |浮动()函数

p5.js 中的float()函数用于获取给定字符串的浮点表示形式作为参数。

句法:

float(String)

参数:此函数接受单个参数字符串,该字符串用于转换为其浮点表示形式。

返回值:它返回转换后的浮点表示。

下面的程序说明了 p5.js 中的 float()函数:

示例 1:此示例使用 float()函数获取给定字符串的浮点表示形式作为参数。

function setup() { 
   
    // Creating Canvas size
    createCanvas(600, 150); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some strings
    let String1 = "12";
    let String2 = "12.5";
    let String3 = "0.9";
    let String4 = "0";
     
    // Calling to float() function.
    let A = float(String1);
    let B = float(String2);
    let C = float(String3);
    let D = float(String4);
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting floating point representation
    text("Floating point representation of string '12' is: " + A, 50, 30);
    text("Floating point representation of string '12.9' is: " + B, 50, 60);
    text("Floating point representation of string '0.9' is: " + C, 50, 90);
    text("Floating point representation of string '0' is: " + D, 50, 110);
}  

输出:

示例 2:此示例使用 float()函数获取给定字符串的浮点表示形式作为参数。

function setup() { 
   
    // Creating Canvas size
    createCanvas(600, 90); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some strings
    let String1 = "Geeks";
    let String2 = "gfg";
     
    // Calling to float() function.
    let A = float(String1);
    let B = float(String2);
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting floating point representation
    text("Floating point representation of string 'Geeks' is: "
            + A, 50, 30);
    text("Floating point representation of string 'gfg' is: " 
            + B, 50, 60);
} 

输出:

注意:从上面的例子中,如果参数应该是一个数字,那么它以浮点表示形式返回输出,否则它返回 NaN,即不是数字。

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