Daily Creative Coding

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

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

火星の地表

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