Daily Creative Coding

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

2016-07-18から1日間の記事一覧

たくさんの円を傾けながら重ねて円錐をつくる

3D

/** * penguins * * @author aa_debdeb * @date 2016/07/18 */ float maxR = 100; float maxZ = 300; float vStep = 0.01; ArrayList<Tree> trees; void setup(){ size(640, 480, P3D); colorMode(HSB, 360, 100, 100); initialize(); } void initialize(){ trees </tree>…