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


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


p5.j​​s中的shorten()函数用于将给定数组的元素数量减少一。

用法:

shorten(Array)

参数:此函数接受参数Array,其元素将缩短一。


返回值:它返回缩短的数组。

以下示例程序旨在说明p5.js中的shorten()函数。
示例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



相关用法


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