Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lingdong-/okb.js
Procedural generation toolkit for Javascript - noises, randomness, curves, and more
https://github.com/lingdong-/okb.js
library math noise procedural-generation random
Last synced: about 2 months ago
JSON representation
Procedural generation toolkit for Javascript - noises, randomness, curves, and more
- Host: GitHub
- URL: https://github.com/lingdong-/okb.js
- Owner: LingDong-
- License: mit
- Created: 2018-11-14T19:11:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T12:20:36.000Z (about 2 years ago)
- Last Synced: 2024-10-30T20:53:57.446Z (3 months ago)
- Topics: library, math, noise, procedural-generation, random
- Language: HTML
- Size: 1.3 MB
- Stars: 60
- Watchers: 5
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://cdn.glitch.com/9219e364-9a57-47d7-9120-c493e42e44e5%2Fokbbanner.png?1555771816778)
# Okb.js
Procedural generation toolkit for Javascript - noises, randomness, curves, and more- [Examples](https://okb.glitch.me/docs/examples/index.html)
- [API documentation](https://okb.glitch.me/docs/api/index.html)## Usage
Browser:
```html
```
or minified:
```html
```
**Note:** To reduce loading time, download the file and host it elsewhere. Since the project is still being developed, this also prevents breaking changes.
Node:
```javascript
const Okb = require("./Okb");
```## Files
- `okb/Okb.js` library source code.
- `okb/examples.js` usage examples, parsed by `okb/builddoc.js` and turned into interactive webpage.
- `update.sh` shell script to generate `okb/docs/examples` and `okb/docs/api` and `okb/Okb-min.js`.
- `okb/docs` mainly contains generated code; don't read; don't modify manually.Source code managed on Glitch: [https://glitch.com/edit/#!/okb](https://glitch.com/edit/#!/okb)