Daily Creative Coding

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

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

万華鏡

/** * kaleidoscope * * @author aa_debdeb * @date 2016/10/04 */ void setup(){ size(640, 640); colorMode(HSB, 360, 100, 100); background(0, 0, 0); noFill(); } void draw(){ translate(width / 2, height / 2); if(mousePressed){ PVector mouse = n…