Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mossr/noisylandscapes.jl
Generate landscapes using Simplex noise in Julia
https://github.com/mossr/noisylandscapes.jl
Last synced: about 1 month ago
JSON representation
Generate landscapes using Simplex noise in Julia
- Host: GitHub
- URL: https://github.com/mossr/noisylandscapes.jl
- Owner: mossr
- Created: 2020-10-08T23:49:53.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-29T08:31:21.000Z (12 months ago)
- Last Synced: 2023-11-29T09:39:16.418Z (12 months ago)
- Language: HTML
- Homepage:
- Size: 2.02 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NoisyLandscapes.jl
[![Noisy landscape Pluto](https://img.shields.io/badge/pluto-noisy%20landscape-00505c)](http://htmlpreview.github.io/?https://raw.githubusercontent.com/mossr/NoisyLandscapes.jl/master/images/landscape-notebook.html)Generate landscapes using Simplex noise in Julia.
- **All credit goes to [Cormullion](https://github.com/cormullion)**
- [Original source](https://github.com/cormullion/cormullion.github.io/blob/dev/source/noise.jl)
- [Blog post](https://cormullion.github.io/pages/2018-10-11-noise/)## Installation
```julia
using Pkg
pkg"add https://github.com/mossr/NoisyLandscapes.jl"
```## Generating landscapes
```julia
using NoisyLandscapelandscape(ColorSchemes.starrynight, "landscape-starrynight")
```
```julia
landscape(ColorSchemes.oslo, "landscape-oslo")
```
```julia
landscape(ColorSchemes.sun, "landscape-sun")
```
## Notebook
See the [landscape-notebook.jl](./src/landscape-notebook.jl) to play around with PlutoUI selectors for different colorschemes.
- [Static HTML notebook](http://htmlpreview.github.io/?https://raw.githubusercontent.com/mossr/NoisyLandscapes.jl/master/images/landscape-notebook.html)