···11+## 1D Examples
22+33+### simple 1D noise with p5.js
44+55+[see it live here](https://flo-bit.github.io/uber-noise/examples/1D/p5-simple-1D-noise.html)
66+77+```html
88+<script src="https://cdn.jsdelivr.net/npm/uber-noise@0.1.8"></script>
99+```
1010+1111+```javascript
1212+// creating noise in setup()
1313+noise = new UberNoise({ scale: 0.005 });
1414+1515+// using noise in draw()
1616+for (let x = 0; x < width; x += stepSize) {
1717+ let v = noise.get(x + counter);
1818+ // ... use v to draw something
1919+}
2020+```
2121+2222+### billowed and ridged 1D noise with p5.js
2323+2424+[see it live here](https://flo-bit.github.io/uber-noise/examples/1D/p5-billowed-rigded-1D-noise.html)
2525+2626+```javascript
2727+noise = new UberNoise({
2828+ scale: 0.005,
2929+ sharpness: 0.5, // -1 to 0 for billowed noise, 0 to 1 for ridged noise
3030+});
3131+```
3232+3333+### fbm noise with p5.js
3434+3535+[see it live here](https://flo-bit.github.io/uber-noise/examples/1D/p5-fbm-1D-noise.html)
3636+3737+```javascript
3838+noise = new UberNoise({
3939+ scale: 0.005,
4040+ octaves: 4, // number of noise layers
4141+ gain: 0.5, // amplitude multiplier for each layer
4242+ lacunarity: 2.0, // scale multiplier for each layer
4343+});
4444+```
4545+4646+### warped noise with p5.js
4747+4848+[see it live here](https://flo-bit.github.io/uber-noise/examples/1D/p5-warped-1D-noise.html)
4949+5050+```javascript
5151+noise = new UberNoise({
5252+ scale: 0.005,
5353+ warp: 0.5, // warp factor
5454+ warpNoise: { scale: 0.005 }, // optional noise instance for warping
5555+});
5656+```
5757+5858+### tiled noise with p5.js
5959+6060+[see it live here](https://flo-bit.github.io/uber-noise/examples/1D/p5-tileable-1D-noise.html)
6161+6262+```javascript
6363+noise = new UberNoise({
6464+ scale: 0.005,
6565+ tileX: true, // tile noise in x direction
6666+});
6767+6868+// get noise value between 0 and 1 for tileable noise
6969+let steps = 100;
7070+for (let x = 0; x < steps; x++) {
7171+ let v = noise.get(x / steps);
7272+ // ... use v to draw something
7373+}
7474+```
7575+7676+## 2D Examples
7777+7878+### simple 2D noise with p5.js
7979+8080+## 3D Examples