Daily Creative Coding

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

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

Random Flashing Points

/** * Random Flashing Points * * @author aa_debdeb * @date 2015/08/22 */ float onRate = 0.7; float diameter = 70; void setup(){ size(500, 500); noStroke(); smooth(); background(255); frameRate(3); } void draw(){ background(255); for(int x …