Daily Creative Coding

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

2017-01-19から1日間の記事一覧

Truchetタイル

/** * truchet tiles * * @author aa_debdeb * @date 2017/01/19 */ void setup(){ size(500, 500); mousePressed(); } void mousePressed(){ int tileSize = 25; float borderSize = random(0, tileSize / 2); color bgColor = color(random(255), random(2…