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


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


p5.j​​s中的shuffle()函数用于调整给定数组元素的顺序。

用法:

shuffle(Array)

参数:此函数接受参数Array,其元素将被重排。


返回值:它返回改组后的数组。

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

function setup() {  
  
    // Creating Canvas size 
    createCanvas(500, 90);  
      
    // Set the background color  
    background(220);  
      
    // Initializing the arrays 
    let Array1 = ['IT', 'CSE', 'ECE']; 
    
    // Calling to shuffle() function. 
    let Array2 = shuffle(Array1); 
      
    // Set the size of text  
    textSize(16);  
      
    // Set the text color  
    fill(color('red'));  
    
    // Getting new shuffled array 
    text("Shuffled array is : " + Array2, 50, 30); 
               
} 

输出:

示例2:

function setup() {  
  
    // Creating Canvas size 
    createCanvas(500, 90);  
      
    // Set the background color  
    background(220);  
    
        // Calling to shuffle() function on an array 
        // Taken as the parameter 
        let Array = shuffle(['Ram', 'Shayam', 'Geeta', 'Anita']); 
      
    // Set the size of text  
    textSize(16);  
      
        // Set the text color  
    fill(color('red'));  
    
    // Getting new shuffled array 
    text("Shuffled array is : " + Array, 50, 30); 
               
} 

输出:

注意:在上面的代码中,尚未使用draw()函数,因为如果我们使用draw函数,则它不会给出清晰的输出,即,它会持续不断地更改数组字符串的顺序,并且不会给出任何停滞的结果。

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



相关用法


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