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


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


p5.j​​s中的subset()函数用于获取给定数组元素的子集。此函数从现有数组中提取元素。

用法:

subset(Array, Start, Count)

参数:此函数接受上述和以下所述的三个参数:


  • Array:此参数保存将在其上执行subset()操作的数组元素以获得其子集元素。
  • Start:这是要从中提取的编号。它的值从0开始。
  • Count:这是要提取的元素数。

返回值:它返回提取的元素。

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

示例1:本示例使用subset()函数获取给定数组元素的子集。

function setup() {  
  
    // Creating Canvas size 
    createCanvas(600, 90);  
}  
  
function draw() {  
      
    // Set the background color  
    background(220);  
      
    // Initializing the array 
    let Array = ['Ram', 'Geeta', 'Shita', 'Shyam']; 
    
    // Initializing a start value form where 
    // extraction is done 
    // it starts form 0. 
    let Start = 1; 
    
    // Initializing the count which defines 
    // the number of elements to be extracted  
    let Count = 2; 
    
    // Calling to subset() function. 
    let A = subset(Array, Start, Count); 
      
    // Set the size of text  
    textSize(16);  
      
    // Set the text color  
    fill(color('red'));  
    
    // Getting extracted elements 
    text("Extracted elements are : " + A, 50, 30);           
} 

输出:

示例2:本示例使用subset()函数获取给定数组元素的子集。

function setup() {  
  
    // Creating Canvas size 
    createCanvas(600, 90);  
}  
  
function draw() {  
      
    // Set the background color  
    background(220);  
      
    // Initializing the array 
    let Array = ['Ram', 'Geeta', 'Shita', 'Shyam']; 
    
    // Initializing a start value form where 
    // extraction is done 
    // it starts form 0. 
    let Start = 0; 
    
    // Initializing the count which defines 
    // the number of elements to be extracted  
    let Count = 3; 
    
    // Calling to subset() function. 
    let A = subset(Array, Start, Count); 
      
    // Set the size of text  
    textSize(16);  
      
    // Set the text color  
    fill(color('red'));  
    
    // Getting extracted elements 
    text("Extracted elements are : " + A, 50, 30);            
} 

输出:

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



相关用法


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