Daily Creative Coding

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

2016-05-02から1日間の記事一覧

弧の間隔が変わらない渦

/** * circular eyes * * @author aa_debdeb * @date 2016/05/02 */ void setup(){ size(500, 500); noStroke(); } void draw(){ background(64); translate(width / 2, height / 2); float radian = 0.0; float radious = 10.0; while(radious <= width){ r…