Skip to content

Commit 3a7aa8c

Browse files
committed
release 0.3.0 version
1 parent 9167e14 commit 3a7aa8c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[cr]: https://crates.io/crates/opensimplex_noise_rs
44
[OpenSimplex noise](https://en.wikipedia.org/wiki/OpenSimplex_noise) is a random noise [algorithm by Kurt Spencer](https://uniblock.tumblr.com/post/97868843242/noise), made as a patent-free alternative to Perlin and Simplex noise.
55

6-
This Rust port currently supports 2D and 3D noise.
6+
This Rust port currently supports 2D, 3D and 4D noise.
77

88
### Examples:
99
[![example](examples/demo_3d/examples/noise_3d_example.gif)](https://github.com/Mapet13/opensimplex_noise_rust/tree/master/examples/demo_3d)
@@ -18,11 +18,12 @@ let value = noise_generator.eval_2d(x * scale, y * scale); // generates value in
1818
###### Just add this line to Cargo.toml file in your Rust project
1919
```toml
2020
[dependencies]
21-
opensimplex_noise_rs = "0.2.1"
21+
opensimplex_noise_rs = "0.3.0"
2222
```
2323
### Code Examples:
2424
- [2D Demo](https://github.com/Mapet13/opensimplex_noise_rust/tree/master/examples/demo/)
2525
- [3D Demo](https://github.com/Mapet13/opensimplex_noise_rust/tree/master/examples/demo_3d)
26+
- [4D Demo](https://github.com/Mapet13/opensimplex_noise_rust/tree/master/examples/demo_4d)
2627
- [Island Terrain Generator](https://github.com/Mapet13/terrain-generator-2d)
2728

2829
### License

0 commit comments

Comments
 (0)