📜  p5.js |平面()函数

📅  最后修改于: 2022-05-13 01:56:38.752000             🧑  作者: Mango

p5.js |平面()函数

p5.js 中的 plane()函数用于根据给定的高度和宽度绘制平面。

句法:

plane( width, height, detailX, detailY )

参数:该函数接受上面提到的四个参数,如下所述:

  • width:此参数保存要绘制的平面的宽度。
  • height:此参数保存要绘制的平面的高度。
  • detailX:它是一个可选参数,它采用 x 维度中的三角形细分数。
  • detailY:它是一个可选参数,它采用 y 维度的三角形细分数。

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

例子:

function setup() {
      
    // Create canvas size
    createCanvas(100, 100, WEBGL);
}
  
// Function to draw plane
function draw() {
    background(200);
      
    // Plane with width 50 
    // and height 50
    plane(50, 50);
}                    

输出:

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