Daily Creative Coding

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

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

斜め交互タイル

/** * skew alternate tiling * * @author aa_debdeb * @date 2016/06/21 */ float e = 20; float theta = PI / 4; float margin = 50; void setup(){ size(500, 500); mousePressed(); } void draw(){ } void mousePressed(){ fill(random(255), random(255…