Daily Creative Coding

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

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

回転する2つの円の中点

/** * Drawing By Circles * * @author aa_debdeb * @date 2015/12/25 */ void setup(){ size(500, 500); smooth(); frameRate(30); background(0); } void draw(){ float radian1 = frameCount * 0.05533; float radian2 = frameCount * 0.0235; float radi…