ランダムな点の表示
https://gyazo.com/f3c1bfc01bde8b4a62a1794c6d065699
結構ムラがあることがわかる
星座っぽいかも!
code:random.js
function setup(){
$('<h2>').text('ランダムに点を打つ').appendTo($('body'))
createCanvas(400,400)
fill('yellow')
strokeWeight(0)
rect(0,0,400,400)
}
function draw(){
fill('blue')
rect(random(400),random(400),5,5)
}