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


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


p5.j​​s中的noCanvas()函数用于删除由p5.js创建的默认画布。可用于不需要画布的草图。它不接受任何参数。

用法:

noCanvas()

参数:此函数不接受任何参数。

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

例:



function setup() { 
  createCanvas(400, 300); 
  
  // Create buttons for creating 
  // and removing the canvas 
  createBtn = createButton("Create Canvas"); 
  createBtn.position(30, 20); 
  createBtn.mouseClicked(createDrawArea); 
  
  removeBtn = createButton("Remove Canvas"); 
  removeBtn.position(30, 50); 
  removeBtn.mouseClicked(removeDrawArea); 
} 
  
function removeDrawArea() { 
    
  // Wrap noCanvas() in a try-catch 
  // to prevent error in case there 
  // exists no canvas to remove 
  try { 
    noCanvas(); 
  } catch (e) { 
    print("No canvas found to remove"); 
    print(e); 
  } 
} 
  
function createDrawArea() { 
  
  // Create a canvas with the 
  // given dimensions 
  createCanvas(400, 300); 
} 
  
function draw() { 
  clear(); 
  background("green"); 
  textSize(20); 
  
  text("This is the canvas area", 50, 130); 
  text("Canvas height:" + height, 50, 150); 
  text("Canvas width:" + width, 50, 170); 
}

输出:

noCanvas-btns

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

相关用法


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