Daily Creative Coding

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

2015-10-13から1日間の記事一覧

重なる透明な円

/** * Overlapping Transparent Circles * * @author aa_debdeb * @date 2015/10/13 */ void setup(){ size(500, 500); smooth(); frameRate(24); background(0); stroke(0, 112, 142, 50); noFill(); translate(100, 100); for(int x = 0; x <= 300; x++){ …