Daily Creative Coding

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

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

Black Hall

/** * Black Hall * * @author aa_debdeb * @ 2015/08/30 */ void setup(){ size(500, 500); noStroke(); smooth(); background(255); float hallSize = 250; float gradiationWidth = 200; for(int i = 0; i <= 255; i++){ fill(255 - i); float arcWidth =…