Daily Creative Coding

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

2015-10-18から1日間の記事一覧

ツイストする四角形

/** * Twisting Rectangle * * @author aa_debdeb * @date 2015/10/18 */ void setup(){ size(500, 500); smooth(); frameRate(24); } void draw(){ fill(0, 150); rect(-1, -1, width, height); noStroke(); fill(0, 255, 0, 200); translate(width/2, heig…