當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js box()用法及代碼示例


p5.j​​s中的box()函數用於繪製具有給定高度,寬度和深度的框。

用法:

box( width, height, depth, detailX, detailY )

參數:該函數接受上述和以下所述的五個參數:

  • width:此參數存儲框的寬度。
  • height:此參數存儲盒子的高度。
  • depth:此參數存儲盒子的深度。
  • detailX:此參數以x維度存儲可選的三角形細分數量。
  • detailY:此參數存儲y維度中三角形細分的可選數量。

以下程序說明了p5.js中的box()函數:


示例1:本示例使用box()函數繪製框。

function setup() { 
      
    // Create Canvas of size 600*600 
    createCanvas(600, 600, WEBGL); 
} 
   
function draw() { 
      
    // Set background color 
    background(200); 
     
    // Set fill color of box 
    fill('green'); 
     
    // box() function 
    box(300, 400, 200); 
}

輸出:

示例2:本示例使用box()函數繪製框。

function setup() { 
    
    // Create Canvas of size 600*600 
    createCanvas(600, 600, WEBGL); 
} 
   
function draw() { 
      
    // Set background color 
    background(200); 
     
    // Set fill color of box 
    fill('yellow'); 
     
    // Rotate  
    rotateX(frameCount * 0.01); 
    rotate(frameCount*0.03); 
     
    // box() function called 
    box(140, 130, 120); 
}

輸出:

參考: https://p5js.org/reference/#/p5/box



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | box() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。