Daily Creative Coding

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

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

踊る炎

/** * dancing flame * * @author aa_debdeb * @date 2016/10/10 */ PVector offset1, offset2; float scale = 0.01; color c1, c2; void setup(){ size(640, 640); noStroke(); offset1 = new PVector(random(10000), random(10000)); offset2 = new PVecto…