rectMode

概要

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

[p5.js] rectMode

サンプル

def setup
  background(220)
  rectMode(CORNER)
  fill(255)
  rect(25, 25, 50, 50)
  rectMode(CORNERS)
  fill(100)
  rect(25, 25, 50, 50)
end
def setup
  background(220)
  rectMode(RADIUS)
  fill(255)
  rect(50, 50, 30, 30)
  rectMode(CENTER)
  fill(100)
  rect(50, 50, 30, 30)
end

構文

戻値