@tsparticles/perlin-noise 4.0.0-alpha.2 → 4.0.0-alpha.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/browser/Grad.js CHANGED
@@ -1,4 +1,8 @@
1
1
  export class Grad {
2
+ w;
3
+ x;
4
+ y;
5
+ z;
2
6
  constructor(x, y, z, w) {
3
7
  this.x = x;
4
8
  this.y = y;
@@ -1,5 +1,9 @@
1
1
  import { Grad } from "./Grad.js";
2
2
  export class PerlinNoise {
3
+ _grad4;
4
+ _gradP;
5
+ _p;
6
+ _perm;
3
7
  constructor() {
4
8
  this._grad4 = [
5
9
  new Grad(0, 1, 1, 1),
package/cjs/Grad.js CHANGED
@@ -1,4 +1,8 @@
1
1
  export class Grad {
2
+ w;
3
+ x;
4
+ y;
5
+ z;
2
6
  constructor(x, y, z, w) {
3
7
  this.x = x;
4
8
  this.y = y;
@@ -1,5 +1,9 @@
1
1
  import { Grad } from "./Grad.js";
2
2
  export class PerlinNoise {
3
+ _grad4;
4
+ _gradP;
5
+ _p;
6
+ _perm;
3
7
  constructor() {
4
8
  this._grad4 = [
5
9
  new Grad(0, 1, 1, 1),
package/esm/Grad.js CHANGED
@@ -1,4 +1,8 @@
1
1
  export class Grad {
2
+ w;
3
+ x;
4
+ y;
5
+ z;
2
6
  constructor(x, y, z, w) {
3
7
  this.x = x;
4
8
  this.y = y;
@@ -1,5 +1,9 @@
1
1
  import { Grad } from "./Grad.js";
2
2
  export class PerlinNoise {
3
+ _grad4;
4
+ _gradP;
5
+ _p;
6
+ _perm;
3
7
  constructor() {
4
8
  this._grad4 = [
5
9
  new Grad(0, 1, 1, 1),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/perlin-noise",
3
- "version": "4.0.0-alpha.2",
3
+ "version": "4.0.0-alpha.20",
4
4
  "description": "tsParticles perlin noise library",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {