Daily Creative Coding

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

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

White Light

/** * White Light * * @author aa_debdeb * @ 2015/08/21 */ void setup(){ size(500, 500); noStroke(); smooth(); background(0); float lightSize = 300; float gradiationWidth = 100; for(int i = 0; i <= 255; i++){ fill(i); float arcWidth = light…