An open API service indexing awesome lists of open source software.

https://github.com/danieldieeins/simplexnoisejava

Based on example code by Stefan Gustavson (stegu@itn.liu.se)
https://github.com/danieldieeins/simplexnoisejava

noise noise-generator simplex simplex-noise

Last synced: 10 months ago
JSON representation

Based on example code by Stefan Gustavson (stegu@itn.liu.se)

Awesome Lists containing this project

README

          

# SimplexNoiseJava ``2023.2``
Based on example code by Stefan Gustavson (stegu@itn.liu.se).

Optimisations by Peter Eastman (peastman@drizzle.stanford.edu).

Searching for the SimplexNoise C++ project? -> https://github.com/SRombauts/SimplexNoise

- - -
Added seed support by Daniel Niesmann (daniel.niesmann@outlook.com) in 2023.

How to implement (Maven/Gradle)
---
Maven repository:
```


jitpack
https://jitpack.io

```
Maven dependency:
```


com.github.danieldieeins
SimplexNoiseJava
2023.2
compile

```
---
Gradle repository:
```
repositories {
maven { url 'https://jitpack.io' }
//Other repositories...
}
```
Gradle dependency:
```
dependencies {
implementation 'com.github.danieldieeins:SimplexNoiseJava:2023.2'
//Other dependencies...
}
```