textFont

概要

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

[p5.js] textFont

サンプル

def setup
  background(220)
  fill(0)
  textSize(16)
  textFont('Georgia')
  text('Georgia', 12, 30)
  textFont('Helvetica')
  text('Helvetica', 12, 60)
end

構文

戻値