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


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


每次运行程序时,p5.js中的randomSeed()函数用于返回一个随机数。 random()函数与randomSeed()函数之间的区别在于,每次运行程序时random()函数都会产生不同的值,但是当使用randomSeed()函数时,则每次运行程序时它将给出一个恒定的随机数。

用法:

randomSeed( Seed )

参数:该函数接受单个参数Seed,该参数可以是任何整数值。


返回值:它返回一个恒定的随机数。

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

示例1:本示例使用randomSeed()函数每次运行程序时都返回一个随机数。

function setup() {  
   
    // Creating Canvas size 
    createCanvas(550, 140);  
       
    // Set the background color  
    background(220);  
    
    // Calling to randomSeed() function 
    randomSeed(9) 
      
    // Calling to random() function with 
    // min and max parameters 
    let A = random(1, 2); 
    let B = random(0, 1); 
    let C = random(2); 
    let D = random(2, 10); 
      
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting random number 
    text("Random number between 1 and 2 is: " + A, 50, 30); 
    text("Random number between 0 and 1 is: " + B, 50, 60); 
    text("Random number between 0 and 2 is: " + C, 50, 90); 
    text("Random number between 2 and 10 is: " + D, 50, 110); 
} 

输出:

注意:在上面的示例中,在变量“C”中仅传递了一个参数,然后它从该数字的下限0到上限返回一个随机数。

示例2:本示例使用randomSeed()函数每次运行程序时都返回一个随机数。

function setup() {  
   
    // Creating Canvas size 
    createCanvas(550, 140);  
       
    // Set the background color  
    background(220);  
     
    // Calling to randomSeed() function 
    randomSeed(9) 
      
    // Calling to random() function with 
    // parameter array of some elements 
    let A = random([1, 2, 3, 4]); 
    let B = random([0, 1]); 
    let C = random([2, 6, 7, 9]); 
    let D = random([2, 10]); 
      
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting random number 
    text("Random number is: " + A, 50, 30); 
    text("Random number is: " + B, 50, 60); 
    text("Random number is: " + C, 50, 90); 
    text("Random number is: " + D, 50, 110); 
}    

输出:

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



相关用法


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