Daily Creative Coding

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

2015-12-26から1日間の記事一覧

脈動する2つの円を重ねる

/** * Pulsebeat * * @author aa_debdeb * @date 2015/12/26 */ void setup(){ size(500, 500); smooth(); frameRate(30); noStroke(); fill(255, 0, 0); } void draw(){ float time = frameCount * 0.1; background(0); translate(width / 2, height / 2); …