Daily Creative Coding

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

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

惑星の地形

/** * terrain of planet * * @author aa_debdeb * @date 2016/09/19 */ int cellNum = 250; float cellSize = 2; float nScale = 0.03; float threshold = 0.015; PVector position; void setup(){ size(500, 500); noStroke(); position = new PVector(0, …