Daily Creative Coding

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

2016-04-22から1日間の記事一覧

回転する球の輪

/** * ring absorption * * @author aa_debdeb * @date 2016/04/22 */ float radious1 = 200; float radious2 = 80; void setup(){ size(640, 640, P3D); noStroke(); fill(255); } void draw(){ background(32); lights(); translate(width / 2, height / 2…