Daily Creative Coding

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

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

sphere()を使わずに球を描く

3D

/** * sphere without sphere() * * @author aa_debdeb * @date 2016/06/19 */ float radious = 200; void setup(){ size(500, 500, P3D); fill(0, 206, 209); stroke(128); strokeWeight(1); } void draw(){ background(0); // lights(); translate(width /…