山辺 真幸 - Random zebra
https://gyazo.com/890844fa96320c301607bd6d7290293c
山辺氏の授業ページ
実行: http://RunP5.com/RunP5/山辺_真幸_-_Random_zebra/rz.js
code:rz.js
function setup(){
createCanvas(600,600);
background(128);
}
function draw(){
x = random(0,width);
y = random(0,height);
w = random(2,20);
noStroke();
if(x % 60 < 35)//xを60で割った余りが35未満だったら
fill(0,0,0);
else
fill(255,255,255);
ellipse(x, y, w, w);
}