Daily Creative Coding

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

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

波模様

/** * pattern of waves * * @author aa_debdeb * @date 2016/06/30 */ float margin = 50; float radious = 15; float theta = 120; color bg, sc; void setup(){ size(500, 500); noFill(); strokeWeight(3); mousePressed(); } void mousePressed(){ bg =…