https://github.com/srombauts/simplexnoisecimg
A simple 2D Map Generator using my SimplexNoise and CImg
https://github.com/srombauts/simplexnoisecimg
procedural-generation simplex-noise
Last synced: 6 months ago
JSON representation
A simple 2D Map Generator using my SimplexNoise and CImg
- Host: GitHub
- URL: https://github.com/srombauts/simplexnoisecimg
- Owner: SRombauts
- Created: 2014-08-18T16:51:24.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-02-16T22:00:30.000Z (almost 8 years ago)
- Last Synced: 2025-07-02T23:35:59.038Z (6 months ago)
- Topics: procedural-generation, simplex-noise
- Language: C
- Homepage:
- Size: 2.15 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SimplexNoiseCImg
----------------
A simple 2D Map Generator using my SimplexNoise and CImg
Copyright (c) 2013-2018 Sébastien Rombauts (sebastien.rombauts@gmail.com)
2D image with only 1 octave of 2D Simplex Noise:

2D image with 4 octaves of 2D Simplex Noise:

2D image with 7 octaves of 2D Simplex Noise:

## Building & testing with CMake
### Get Google Test submodule
```bash
git submodule init
git submodule update
```
### Typical generic build (see also "build.bat" or "./build.sh")
```bash
mkdir build
cd build
cmake .. # cmake .. -G "Visual Studio 15 2017"
cmake --build . # make
ctest . # make test
```
### Debug build for Unix Makefiles
```bash
mkdir Debug
cd Debug
cmake .. -DCMAKE_BUILD_TYPE=Debug # -G "Unix Makefiles"
cmake --build . # make
ctest . # make test
```