Daily Creative Coding

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

2016-06-10から1日間の記事一覧

円を取り囲む線

3D

/** * line surrounding sphere * * @author aa_debdeb * @date 2016/06/10 */ float radious = 200; float radian; void setup(){ size(500, 500, P3D); noFill(); strokeWeight(2); stroke(0, 150); radian = 0.0; } void draw(){ background(255); transl…