randomSeed

概要

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

[p5.js] randomSeed

サンプル

def setup
  background(220)
  randomSeed(99)
  (0...100).each do |i|
    r = random(0, 255)
    stroke(r)
    line(i, 0, i, 100)
  end
end

構文

戻値