p5.js中的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
相关用法
- d3.js d3.shuffle()用法及代码示例
- PHP shuffle()用法及代码示例
- underscore.js shuffle()用法及代码示例
- p5.js str()用法及代码示例
- PHP key()用法及代码示例
- CSS var()用法及代码示例
- p5.js min()用法及代码示例
- p5.js tan()用法及代码示例
- PHP pos()用法及代码示例
- p5.js red()用法及代码示例
- p5.js hex()用法及代码示例
- p5.js sin()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | shuffle() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。