Daily Creative Coding

元「30 min. Processing」。毎日、Creative Codingします。

2015-08-31から1日間の記事一覧

Poping Up Bubbles

/** * Poping Up Bubbles * * @author aa_debdeb * @date 2015/08/31 */ int t = 0; void setup(){ size(500, 500); noStroke(); smooth(); background(0); frameRate(60); } void draw(){ fill(0, 5); rect(0, 0, width, height); if(t == 100){ popUpBubbl…