noise
noise copied to clipboard
Perlin noise library for Python
Missing argument, now allows lacunarity to be changed in snoise4, where as before it segfaulted as referenced [here](https://github.com/caseman/noise/issues/26)
Python 3.6 segfaults when I call snoise4 with any lacunarity argument. Test program: ``` #!/usr/bin/python3.6 import noise noise.snoise4(0, 0, 0, 0, lacunarity=2.0) ``` Core backtrace: ``` $ sudo cat ccpp-2019-02-19-06:49:03-23546/core_backtrace...
Hi, I've implemented one of the solutions for adding type hints I discussed in #24. Would be nice if you could have a look and decide whether this seems acceptable...
First of all, thanks for making your work available to all of us! I'm currently working on adding type hints to a project that uses the `noise` package. Since most...
Standardize on spaces for C source files and remove trailing whitespace
I'm getting inconsistent segfault crashes when using seeds larger than 15000 (using consistent values for the other parameters). it's my understanding that seeds should be able to take integer values...
Can you get consistent noise generation across different hardware by specifying a seed? I have one computer where I use `import random; random.seed(1234)` to set the seed and the perlin...