Daily Creative Coding

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

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

柔らかい発光体

/** * soft illuminant * * @author aa_debdeb * @date 2016/06/07 */ PVector nStart; float hue; void setup(){ size(500, 500); noStroke(); nStart = new PVector(random(1000), random(1000), random(1000)); background(30); hue = 0; } void draw(){ …