p5.js |缩短()函数
p5.js 中的shortcut ()函数用于将给定数组的元素数量减1 。
句法:
shorten(Array)
参数:此函数接受一个参数数组,其元素将被缩短一。
返回值:它返回缩短的数组。
下面的程序说明了 p5.js 中的 short()函数。
示例 1:
function setup() {
// Creating Canvas size
createCanvas(500, 90);
}
function draw() {
// Set the background color
background(220);
// Initializing the arrays
let Array1 = ['IT', 'CSE', 'ECE'];
// Calling to shorten() function.
let Array2 = shorten(Array1);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting new shortened array
text("Shortened array is : " + Array2, 50, 30);
}
输出:
示例 2:
function setup() {
// Creating Canvas size
createCanvas(500, 90);
}
function draw() {
// Set the background color
background(220);
// Calling to shorten() function on an array
// Taken as the parameter
let Array = shorten(['Ram', 'Shayam', 'Geeta', 'Anita']);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting new shortened array
text("Shortened array is : " + Array, 50, 30);
}
输出:
参考: https://p5js.org/reference/#/p5/shorten