Daily Creative Coding

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

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

点線で円を描く

/** * Sphere * * @author aa_debdeb * @date 2015/11/11 */ void setup(){ size(500, 500); background(0); } void draw(){ stroke(255); translate(width/2, height/2); float radious = 200 * sin(frameCount * (TWO_PI / 169.0)); point(radious * cos(f…