clear

概要

p5.jsリファレンス(参考情報)

[p5.js] clear

サンプル

# Clear the screen on mouse press.
def setup
  background(128)
end

def draw
  ellipse(mouseX, mouseY, 20, 20)
end

def mousePressed
  clear
  background(128)
end

構文

戻値