在Python中快速生成3D噪声
我需要一种在 python 中快速生成 3D 单纯形噪声的方法。有哪些方法可以解决这个问题?
I need a method to generate 3D simplex noise in python rather quickly. What methods are there out there to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
示例代码包含在包中,例如
2dtexture
:Example code is included in the package, e.g.
2dtexture
:使用具有合适周期的 mod 函数。 www 上有很多页面解释 mod 功能。
只需确保它也适用于 3 维,某些适用于 1 或 2 维的模组可能不适合超过 3 维。
use a mod function with a suitable period. there are quite a few pages around the www explaining mod functions.
just make sure it is also suitable for 3 dimensions, some mods that are suitable for 1 or 2 dimensions may not be suitable over 3.
欲了解更多信息。
http://snup.org/code-snippets/1153/ python-n-Dimension-simplex-noise/
它有一个简单的代码来生成单纯形噪声。
For more info.
http://snup.org/code-snippets/1153/python-n-dimensional-simplex-noise/
It has a simple code to generate simplex noise.