Daily Creative Coding

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

2016-01-01から1日間の記事一覧

星空

/** * Starry Sky * * @author aa_debdeb * @date 2016/01/01 */ void setup(){ size(500, 300); smooth(); noLoop(); background(30); colorMode(HSB, 360, 100, 100, 100); for(int i = 0; i < 200; i++){ PVector pos = new PVector(random(width), rando…