Daily Creative Coding

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

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

3D空間を飛ぶ鳥

3D

3D birds - OpenProcessing /** * 3D birds * * @author aa_debdeb * @date 2016/10/28 */ PVector bodySize = new PVector(10, 10, 40); PVector wingSize = new PVector(40, 1, bodySize.z); ArrayList<Bird> birds; color c1, c2; void setup(){ size(640, 640,</bird>…