Daily Creative Coding

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

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

重なる市松模様

/** * overlayed checks * * @author aa_debdeb * @date 2016/03/26 */ int CELL_NUM = 200; int CELL_SIZE = 10; void setup(){ size(640, 640); noStroke(); background(255); } void draw(){ translate(mouseX, mouseY); rotate(frameCount * 0.05); for(…