Daily Creative Coding

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

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

回転灯

/** * Revolving Light * * @author aa_debdeb * @date 2015/10/21 */ void setup(){ size(500, 500); smooth(); frameRate(24); background(0); } void draw(){ noStroke(); fill(0, 30); rect(-1, -1, width, height); stroke(255, 255, 0); strokeWeight(…