noise icon indicating copy to clipboard operation
noise copied to clipboard

Perlin noise library for Python

Results 18 noise issues
Sort by recently updated
recently updated
newest added

while running a python script getting this error. Can anybody help?

The current code segfaults for large bases because it reads past the end of the _PERM array. There are a few possible fixes with advantages and disadvantages. This fix accepts...

i tried to install noise using pip but i got this error ``` C:\Users\Zhenzhu\Downloads>python -m pip install noise Collecting noise Using cached noise-1.2.2.tar.gz (125 kB) Building wheels for collected packages:...

I was porting the code in pure python from the c++ for vnoise (numpy-accelerated vectorized pure python port https://github.com/plottertools/vnoise (it's about as fast as the pure c++ if you vectorized...

Hi, thanks for sharing this code. I have used it in my research and would like to acknowledge it in my paper. I have just said "we used `noise`" and...

Today I try terrain generation with different seeds. so I write: ```python from noise.perlin import SimplexNoise noise2 = SimplexNoise(hash('a')).noise2 print(noise2(0, 0)) ``` But some error raise: ``` Traceback (most recent...

I've noticed the latest version of the package is not uploaded to pypi - coming here as I've also had the issue with the segfault on signal.snoise4 function. Would you...

Added a randomize(period, seed) function to change the permutation table at run-time in the C implementation, similar to the randomize function in the pure python implementation. Also fixed a typo...

Hello, I'm trying to use the noise library from inside docker alpine. Installing noise with pip is okay, but when I try to import it I get this error message...

Hello, I recently wanted to move and use pypy3 but when I want to import the nosie lib I got the same message as the isssue #21 the problem doesn't...