Current section
Files
Jump to
Current section
Files
native/noise/THIRD_PARTY_LICENSES
This crate vendors `src/fastnoise.rs` from bracket-noise 0.8.7, which is itself
a Rust port of Auburn's FastNoise. Both are MIT licensed. Their notices follow.
Modifications made by Isotope are listed in the header of `src/fastnoise.rs`.
================================================================================
bracket-noise (https://github.com/thebracket/bracket-lib)
================================================================================
MIT License
Copyright 2019 Herbert Wolverson (DBA Bracket Productions)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================================================
FastNoise (https://github.com/Auburn/FastNoise, branch FastNoise-Legacy)
================================================================================
MIT License
Copyright (c) 2017 Jordan Peck
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================================================
Note on the xorshift module in src/fastnoise.rs
================================================================================
The `xorshift` module reproduces the behaviour of rand_xorshift 0.3.0 and
rand_core 0.6.4 (dual MIT / Apache-2.0, Copyright 2018 Developers of the Rand
project, Copyright (c) 2014 The Rust Project Developers). It is an
independent reimplementation of the documented
algorithms (xorshift128 and the PCG32-based `seed_from_u64` expansion), written
so that the vendored noise reproduces bit-identical output without depending on
those crates.