2020-11-23から1日間の記事一覧

パーリンノイズ

パーリンノイズ 参考URL https://mrl.cs.nyu.edu/~perlin/doc/oscar.html https://github.com/a-i-to/perlin-noise-sample GitHubから引用 function PerlinNoise(random) { if (random) { this._random = random; } else { this._random = Math.random; } th…