Skip to content

Commit

Permalink
Merge pull request #5 from pex-gl/v2
Browse files Browse the repository at this point in the history
V2
  • Loading branch information
dmnsgn authored Feb 5, 2024
2 parents f199ef8 + f5d17a8 commit 35dc58e
Show file tree
Hide file tree
Showing 24 changed files with 15,103 additions and 461 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
6 changes: 5 additions & 1 deletion .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
node_modules
node_modules
.DS_Store
types
lib
coverage
Empty file added .nojekyll
Empty file.
12 changes: 11 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
test
web_modules
examples
docs
coverage
test
.github
screenshot.*
index.html
tsconfig.json
.editorconfig
.nojekyll
73 changes: 73 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Changelog

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

# [2.0.0-alpha.2](https://github.com/pex-gl/pex-random/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2023-08-30)


### Features

* add random quat ([574efcd](https://github.com/pex-gl/pex-random/commit/574efcda418c1692aa3a76544c767805f4299ce9))



# [2.0.0-alpha.1](https://github.com/pex-gl/pex-random/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2022-09-07)


### Features

* use simplex-noise 4.0.0 ([6dcec5d](https://github.com/pex-gl/pex-random/commit/6dcec5d3835ef54c67936b41ec1df680d1f011c8)), closes [#6](https://github.com/pex-gl/pex-random/issues/6)



# [2.0.0-alpha.0](https://github.com/pex-gl/pex-random/compare/v1.0.1...v2.0.0-alpha.0) (2022-07-06)


### Code Refactoring

* use ES modules ([d848f38](https://github.com/pex-gl/pex-random/commit/d848f38ef27280f579b0a863df79aac0e4786051)), closes [#2](https://github.com/pex-gl/pex-random/issues/2)


### Features

* add variadic random.fbm + add random.create for local PRNGs ([6b5ea1f](https://github.com/pex-gl/pex-random/commit/6b5ea1fa864cab2a7b9dbe1dedd1e4a9ee9b629c)), closes [#4](https://github.com/pex-gl/pex-random/issues/4)
* remove default export ([e43efec](https://github.com/pex-gl/pex-random/commit/e43efec8c740fb64f7349f4006417c3ec1a82ddb))
* use default argument values ([59f05a1](https://github.com/pex-gl/pex-random/commit/59f05a1ec8c0dab94596766f2be52e39e36b12df))
* use Number.MAX_SAFE_INTEGER ([b57697a](https://github.com/pex-gl/pex-random/commit/b57697a7aaf08680784e78c5c871ecc00cdbd072))


### Performance Improvements

* remove intermediary const declaration in vec3InAABB ([1210c7a](https://github.com/pex-gl/pex-random/commit/1210c7a3f9ff850377b6f46ca86ea0c322a360f5))


### BREAKING CHANGES

* switch to type module



# [2.0.0](https://github.com/pex-gl/pex-random/compare/v1.0.1...v2.0.0) (2022-07-06)


### Code Refactoring

* use ES modules ([d848f38](https://github.com/pex-gl/pex-random/commit/d848f38ef27280f579b0a863df79aac0e4786051)), closes [#2](https://github.com/pex-gl/pex-random/issues/2)


### Features

* add variadic random.fbm + add random.create for local PRNGs ([6b5ea1f](https://github.com/pex-gl/pex-random/commit/6b5ea1fa864cab2a7b9dbe1dedd1e4a9ee9b629c)), closes [#4](https://github.com/pex-gl/pex-random/issues/4)
* remove default export ([e43efec](https://github.com/pex-gl/pex-random/commit/e43efec8c740fb64f7349f4006417c3ec1a82ddb))
* use default argument values ([59f05a1](https://github.com/pex-gl/pex-random/commit/59f05a1ec8c0dab94596766f2be52e39e36b12df))
* use Number.MAX_SAFE_INTEGER ([b57697a](https://github.com/pex-gl/pex-random/commit/b57697a7aaf08680784e78c5c871ecc00cdbd072))


### Performance Improvements

* remove intermediary const declaration in vec3InAABB ([1210c7a](https://github.com/pex-gl/pex-random/commit/1210c7a3f9ff850377b6f46ca86ea0c322a360f5))


### BREAKING CHANGES

* switch to type module
2 changes: 1 addition & 1 deletion LICENSE → LICENSE.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of

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.
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.
Loading

0 comments on commit 35dc58e

Please sign in to comment.