@tsparticles/path-curl-noise 4.0.0-alpha.3 → 4.0.0-alpha.5

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/823.min.js ADDED
@@ -0,0 +1,2 @@
1
+ /*! For license information please see 823.min.js.LICENSE.txt */
2
+ (this.webpackChunk_tsparticles_path_curl_noise=this.webpackChunk_tsparticles_path_curl_noise||[]).push([[823],{823(e,s,t){t.d(s,{CurlNoiseGenerator:()=>n});var i=t(303),o=t(226);const p={speed:.2,step:250};class n{constructor(){const e=new o.SimplexNoise;this._simplex=e.noise2d,this.options=(0,i.deepExtend)({},p)}generate(e){const s=e.getPosition(),{speed:t,step:o}=this.options,p=s.x/o,n=s.y/o,h=.001,l=(this._simplex.noise(p,n+h)-this._simplex.noise(p,n-h))/(i.double*h),a=(this._simplex.noise(p+h,n)-this._simplex.noise(p-h,n))/(i.double*h);return e.velocity.x=0,e.velocity.y=0,i.Vector.create(t*l,t*-a)}init(e){const s=e.actualOptions.particles.move.path.options;this.options.seed=s.seed,this.options.speed=(s.speed??p.speed)*e.retina.pixelRatio,this.options.step=s.step??p.step,this._simplex.seed(this.options.seed??(0,i.getRandom)())}reset(){}update(){}}}}]);
@@ -0,0 +1 @@
1
+ /*! tsParticles Curl Noise Path v4.0.0-alpha.5 by Matteo Bruni */
@@ -1,9 +1,9 @@
1
- import { Vector, deepExtend, getRandom, } from "@tsparticles/engine";
1
+ import { Vector, deepExtend, double, getRandom, } from "@tsparticles/engine";
2
2
  import { SimplexNoise } from "@tsparticles/simplex-noise";
3
3
  const defaultOptions = {
4
4
  speed: 0.2,
5
5
  step: 250,
6
- }, double = 2;
6
+ };
7
7
  export class CurlNoiseGenerator {
8
8
  constructor() {
9
9
  const simplex = new SimplexNoise();
package/browser/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export const curlNoisePathName = "curlNoise";
2
- export function loadCurlNoisePath(engine) {
3
- engine.checkVersion("4.0.0-alpha.3");
4
- engine.register(async (e) => {
2
+ export async function loadCurlNoisePath(engine) {
3
+ engine.checkVersion("4.0.0-alpha.5");
4
+ await engine.register(async (e) => {
5
5
  const { CurlNoiseGenerator } = await import("./CurlNoiseGenerator.js");
6
6
  e.addPathGenerator(curlNoisePathName, new CurlNoiseGenerator());
7
7
  });
@@ -1,9 +1,9 @@
1
- import { Vector, deepExtend, getRandom, } from "@tsparticles/engine";
1
+ import { Vector, deepExtend, double, getRandom, } from "@tsparticles/engine";
2
2
  import { SimplexNoise } from "@tsparticles/simplex-noise";
3
3
  const defaultOptions = {
4
4
  speed: 0.2,
5
5
  step: 250,
6
- }, double = 2;
6
+ };
7
7
  export class CurlNoiseGenerator {
8
8
  constructor() {
9
9
  const simplex = new SimplexNoise();
package/cjs/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export const curlNoisePathName = "curlNoise";
2
- export function loadCurlNoisePath(engine) {
3
- engine.checkVersion("4.0.0-alpha.3");
4
- engine.register(async (e) => {
2
+ export async function loadCurlNoisePath(engine) {
3
+ engine.checkVersion("4.0.0-alpha.5");
4
+ await engine.register(async (e) => {
5
5
  const { CurlNoiseGenerator } = await import("./CurlNoiseGenerator.js");
6
6
  e.addPathGenerator(curlNoisePathName, new CurlNoiseGenerator());
7
7
  });
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-alpha.3
7
+ * v4.0.0-alpha.5
8
8
  */
9
9
  "use strict";
10
10
  /*
@@ -23,7 +23,7 @@
23
23
  \********************************************/
24
24
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
25
25
 
26
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ CurlNoiseGenerator: () => (/* binding */ CurlNoiseGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_simplex_noise__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @tsparticles/simplex-noise */ \"@tsparticles/simplex-noise\");\n\n\nconst defaultOptions = {\n speed: 0.2,\n step: 250\n },\n double = 2;\nclass CurlNoiseGenerator {\n constructor() {\n const simplex = new _tsparticles_simplex_noise__WEBPACK_IMPORTED_MODULE_1__.SimplexNoise();\n this._simplex = simplex.noise2d;\n this.options = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, defaultOptions);\n }\n generate(particle) {\n const pos = particle.getPosition(),\n {\n speed,\n step\n } = this.options,\n x = pos.x / step,\n y = pos.y / step,\n eps = 0.001,\n n1a = this._simplex.noise(x, y + eps),\n n2a = this._simplex.noise(x, y - eps),\n a = (n1a - n2a) / (double * eps),\n n1b = this._simplex.noise(x + eps, y),\n n2b = this._simplex.noise(x - eps, y),\n b = (n1b - n2b) / (double * eps);\n particle.velocity.x = 0;\n particle.velocity.y = 0;\n return _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.create(speed * a, speed * -b);\n }\n init(container) {\n const sourceOptions = container.actualOptions.particles.move.path.options;\n this.options.seed = sourceOptions[\"seed\"];\n this.options.speed = (sourceOptions[\"speed\"] ?? defaultOptions.speed) * container.retina.pixelRatio;\n this.options.step = sourceOptions[\"step\"] ?? defaultOptions.step;\n this._simplex.seed(this.options.seed ?? (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)());\n }\n reset() {}\n update() {}\n}\n\n//# sourceURL=webpack://@tsparticles/path-curl-noise/./dist/browser/CurlNoiseGenerator.js?\n}");
26
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ CurlNoiseGenerator: () => (/* binding */ CurlNoiseGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_simplex_noise__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @tsparticles/simplex-noise */ \"@tsparticles/simplex-noise\");\n\n\nconst defaultOptions = {\n speed: 0.2,\n step: 250\n};\nclass CurlNoiseGenerator {\n constructor() {\n const simplex = new _tsparticles_simplex_noise__WEBPACK_IMPORTED_MODULE_1__.SimplexNoise();\n this._simplex = simplex.noise2d;\n this.options = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, defaultOptions);\n }\n generate(particle) {\n const pos = particle.getPosition(),\n {\n speed,\n step\n } = this.options,\n x = pos.x / step,\n y = pos.y / step,\n eps = 0.001,\n n1a = this._simplex.noise(x, y + eps),\n n2a = this._simplex.noise(x, y - eps),\n a = (n1a - n2a) / (_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.double * eps),\n n1b = this._simplex.noise(x + eps, y),\n n2b = this._simplex.noise(x - eps, y),\n b = (n1b - n2b) / (_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.double * eps);\n particle.velocity.x = 0;\n particle.velocity.y = 0;\n return _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.create(speed * a, speed * -b);\n }\n init(container) {\n const sourceOptions = container.actualOptions.particles.move.path.options;\n this.options.seed = sourceOptions[\"seed\"];\n this.options.speed = (sourceOptions[\"speed\"] ?? defaultOptions.speed) * container.retina.pixelRatio;\n this.options.step = sourceOptions[\"step\"] ?? defaultOptions.step;\n this._simplex.seed(this.options.seed ?? (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)());\n }\n reset() {}\n update() {}\n}\n\n//# sourceURL=webpack://@tsparticles/path-curl-noise/./dist/browser/CurlNoiseGenerator.js?\n}");
27
27
 
28
28
  /***/ }
29
29
 
@@ -1,9 +1,9 @@
1
- import { Vector, deepExtend, getRandom, } from "@tsparticles/engine";
1
+ import { Vector, deepExtend, double, getRandom, } from "@tsparticles/engine";
2
2
  import { SimplexNoise } from "@tsparticles/simplex-noise";
3
3
  const defaultOptions = {
4
4
  speed: 0.2,
5
5
  step: 250,
6
- }, double = 2;
6
+ };
7
7
  export class CurlNoiseGenerator {
8
8
  constructor() {
9
9
  const simplex = new SimplexNoise();
package/esm/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export const curlNoisePathName = "curlNoise";
2
- export function loadCurlNoisePath(engine) {
3
- engine.checkVersion("4.0.0-alpha.3");
4
- engine.register(async (e) => {
2
+ export async function loadCurlNoisePath(engine) {
3
+ engine.checkVersion("4.0.0-alpha.5");
4
+ await engine.register(async (e) => {
5
5
  const { CurlNoiseGenerator } = await import("./CurlNoiseGenerator.js");
6
6
  e.addPathGenerator(curlNoisePathName, new CurlNoiseGenerator());
7
7
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/path-curl-noise",
3
- "version": "4.0.0-alpha.3",
3
+ "version": "4.0.0-alpha.5",
4
4
  "description": "tsParticles curl noise path",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -104,8 +104,8 @@
104
104
  "./package.json": "./package.json"
105
105
  },
106
106
  "dependencies": {
107
- "@tsparticles/engine": "4.0.0-alpha.3",
108
- "@tsparticles/simplex-noise": "4.0.0-alpha.3"
107
+ "@tsparticles/engine": "4.0.0-alpha.5",
108
+ "@tsparticles/simplex-noise": "4.0.0-alpha.5"
109
109
  },
110
110
  "type": "module"
111
111
  }
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
- <title>@tsparticles/path-curl-noise [10 Jan 2026 at 19:29]</title>
6
+ <title>@tsparticles/path-curl-noise [21 Jan 2026 at 18:50]</title>
7
7
  <link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
8
8
 
9
9
  <script>
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-alpha.3
7
+ * v4.0.0-alpha.5
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -34,7 +34,7 @@ return /******/ (() => { // webpackBootstrap
34
34
  \*******************************/
35
35
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
36
36
 
37
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ curlNoisePathName: () => (/* binding */ curlNoisePathName),\n/* harmony export */ loadCurlNoisePath: () => (/* binding */ loadCurlNoisePath)\n/* harmony export */ });\nconst curlNoisePathName = \"curlNoise\";\nfunction loadCurlNoisePath(engine) {\n engine.checkVersion(\"4.0.0-alpha.3\");\n engine.register(async e => {\n const {\n CurlNoiseGenerator\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_CurlNoiseGenerator_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./CurlNoiseGenerator.js */ \"./dist/browser/CurlNoiseGenerator.js\"));\n e.addPathGenerator(curlNoisePathName, new CurlNoiseGenerator());\n });\n}\n\n//# sourceURL=webpack://@tsparticles/path-curl-noise/./dist/browser/index.js?\n}");
37
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ curlNoisePathName: () => (/* binding */ curlNoisePathName),\n/* harmony export */ loadCurlNoisePath: () => (/* binding */ loadCurlNoisePath)\n/* harmony export */ });\nconst curlNoisePathName = \"curlNoise\";\nasync function loadCurlNoisePath(engine) {\n engine.checkVersion(\"4.0.0-alpha.5\");\n await engine.register(async e => {\n const {\n CurlNoiseGenerator\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_CurlNoiseGenerator_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./CurlNoiseGenerator.js */ \"./dist/browser/CurlNoiseGenerator.js\"));\n e.addPathGenerator(curlNoisePathName, new CurlNoiseGenerator());\n });\n}\n\n//# sourceURL=webpack://@tsparticles/path-curl-noise/./dist/browser/index.js?\n}");
38
38
 
39
39
  /***/ },
40
40
 
@@ -128,18 +128,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_simplex_noise__;
128
128
  /******/ };
129
129
  /******/ })();
130
130
  /******/
131
- /******/ /* webpack/runtime/global */
132
- /******/ (() => {
133
- /******/ __webpack_require__.g = (function() {
134
- /******/ if (typeof globalThis === 'object') return globalThis;
135
- /******/ try {
136
- /******/ return this || new Function('return this')();
137
- /******/ } catch (e) {
138
- /******/ if (typeof window === 'object') return window;
139
- /******/ }
140
- /******/ })();
141
- /******/ })();
142
- /******/
143
131
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
144
132
  /******/ (() => {
145
133
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
@@ -204,8 +192,8 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_simplex_noise__;
204
192
  /******/ /* webpack/runtime/publicPath */
205
193
  /******/ (() => {
206
194
  /******/ var scriptUrl;
207
- /******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
208
- /******/ var document = __webpack_require__.g.document;
195
+ /******/ if (globalThis.importScripts) scriptUrl = globalThis.location + "";
196
+ /******/ var document = globalThis.document;
209
197
  /******/ if (!scriptUrl && document) {
210
198
  /******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
211
199
  /******/ scriptUrl = document.currentScript.src;
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see tsparticles.path.curl.noise.min.js.LICENSE.txt */
2
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"),require("@tsparticles/simplex-noise"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine","@tsparticles/simplex-noise"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine"),require("@tsparticles/simplex-noise")):t(e.window,e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,((e,t)=>(()=>{var r,o,i={226(e){e.exports=t},303(t){t.exports=e}},n={};function a(e){var t=n[e];if(void 0!==t)return t.exports;var r=n[e]={exports:{}};return i[e](r,r.exports,a),r.exports}a.m=i,a.d=(e,t)=>{for(var r in t)a.o(t,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce(((t,r)=>(a.f[r](e,t),t)),[])),a.u=e=>e+".min.js",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r={},o="@tsparticles/path-curl-noise:",a.l=(e,t,i,n)=>{if(r[e])r[e].push(t);else{var s,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),p=0;p<l.length;p++){var u=l[p];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==o+i){s=u;break}}s||(c=!0,(s=document.createElement("script")).charset="utf-8",a.nc&&s.setAttribute("nonce",a.nc),s.setAttribute("data-webpack",o+i),s.src=e),r[e]=[t];var d=(t,o)=>{s.onerror=s.onload=null,clearTimeout(f);var i=r[e];if(delete r[e],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(o))),t)return t(o)},f=setTimeout(d.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=d.bind(null,s.onerror),s.onload=d.bind(null,s.onload),c&&document.head.appendChild(s)}},a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;a.g.importScripts&&(e=a.g.location+"");var t=a.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var o=r.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=r[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e})(),(()=>{var e={562:0};a.f.j=(t,r)=>{var o=a.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else{var i=new Promise(((r,i)=>o=e[t]=[r,i]));r.push(o[2]=i);var n=a.p+a.u(t),s=new Error;a.l(n,(r=>{if(a.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var i=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+i+": "+n+")",s.name="ChunkLoadError",s.type=i,s.request=n,o[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var o,i,[n,s,c]=r,l=0;if(n.some((t=>0!==e[t]))){for(o in s)a.o(s,o)&&(a.m[o]=s[o]);if(c)c(a)}for(t&&t(r);l<n.length;l++)i=n[l],a.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=this.webpackChunk_tsparticles_path_curl_noise=this.webpackChunk_tsparticles_path_curl_noise||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var s={};a.r(s),a.d(s,{curlNoisePathName:()=>c,loadCurlNoisePath:()=>l});const c="curlNoise";function l(e){e.checkVersion("4.0.0-alpha.3"),e.register((async e=>{const{CurlNoiseGenerator:t}=await a.e(720).then(a.bind(a,720));e.addPathGenerator(c,new t)}))}return s})()));
2
+ !function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r(require("@tsparticles/engine"),require("@tsparticles/simplex-noise"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine","@tsparticles/simplex-noise"],r);else{var t="object"==typeof exports?r(require("@tsparticles/engine"),require("@tsparticles/simplex-noise")):r(e.window,e.window);for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(this,((e,r)=>(()=>{var t,o,i={226(e){e.exports=r},303(r){r.exports=e}},a={};function n(e){var r=a[e];if(void 0!==r)return r.exports;var t=a[e]={exports:{}};return i[e](t,t.exports,n),t.exports}n.m=i,n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce(((r,t)=>(n.f[t](e,r),r)),[])),n.u=e=>e+".min.js",n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t={},o="@tsparticles/path-curl-noise:",n.l=(e,r,i,a)=>{if(t[e])t[e].push(r);else{var s,l;if(void 0!==i)for(var p=document.getElementsByTagName("script"),c=0;c<p.length;c++){var u=p[c];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==o+i){s=u;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",n.nc&&s.setAttribute("nonce",n.nc),s.setAttribute("data-webpack",o+i),s.src=e),t[e]=[r];var d=(r,o)=>{s.onerror=s.onload=null,clearTimeout(f);var i=t[e];if(delete t[e],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(o))),r)return r(o)},f=setTimeout(d.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=d.bind(null,s.onerror),s.onload=d.bind(null,s.onload),l&&document.head.appendChild(s)}},n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;globalThis.importScripts&&(e=globalThis.location+"");var r=globalThis.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var o=t.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=t[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=e})(),(()=>{var e={562:0};n.f.j=(r,t)=>{var o=n.o(e,r)?e[r]:void 0;if(0!==o)if(o)t.push(o[2]);else{var i=new Promise(((t,i)=>o=e[r]=[t,i]));t.push(o[2]=i);var a=n.p+n.u(r),s=new Error;n.l(a,(t=>{if(n.o(e,r)&&(0!==(o=e[r])&&(e[r]=void 0),o)){var i=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;s.message="Loading chunk "+r+" failed.\n("+i+": "+a+")",s.name="ChunkLoadError",s.type=i,s.request=a,o[1](s)}}),"chunk-"+r,r)}};var r=(r,t)=>{var o,i,[a,s,l]=t,p=0;if(a.some((r=>0!==e[r]))){for(o in s)n.o(s,o)&&(n.m[o]=s[o]);if(l)l(n)}for(r&&r(t);p<a.length;p++)i=a[p],n.o(e,i)&&e[i]&&e[i][0](),e[i]=0},t=this.webpackChunk_tsparticles_path_curl_noise=this.webpackChunk_tsparticles_path_curl_noise||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})();var s={};n.r(s),n.d(s,{curlNoisePathName:()=>l,loadCurlNoisePath:()=>p});const l="curlNoise";async function p(e){e.checkVersion("4.0.0-alpha.5"),await e.register((async e=>{const{CurlNoiseGenerator:r}=await n.e(823).then(n.bind(n,823));e.addPathGenerator(l,new r)}))}return s})()));
@@ -1 +1 @@
1
- /*! tsParticles Curl Noise Path v4.0.0-alpha.3 by Matteo Bruni */
1
+ /*! tsParticles Curl Noise Path v4.0.0-alpha.5 by Matteo Bruni */
package/types/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import { type Engine } from "@tsparticles/engine";
2
2
  export declare const curlNoisePathName = "curlNoise";
3
- export declare function loadCurlNoisePath(engine: Engine): void;
3
+ export declare function loadCurlNoisePath(engine: Engine): Promise<void>;
@@ -15,7 +15,7 @@
15
15
  const defaultOptions = {
16
16
  speed: 0.2,
17
17
  step: 250,
18
- }, double = 2;
18
+ };
19
19
  class CurlNoiseGenerator {
20
20
  constructor() {
21
21
  const simplex = new simplex_noise_1.SimplexNoise();
@@ -23,7 +23,7 @@
23
23
  this.options = (0, engine_1.deepExtend)({}, defaultOptions);
24
24
  }
25
25
  generate(particle) {
26
- const pos = particle.getPosition(), { speed, step } = this.options, x = pos.x / step, y = pos.y / step, eps = 0.001, n1a = this._simplex.noise(x, y + eps), n2a = this._simplex.noise(x, y - eps), a = (n1a - n2a) / (double * eps), n1b = this._simplex.noise(x + eps, y), n2b = this._simplex.noise(x - eps, y), b = (n1b - n2b) / (double * eps);
26
+ const pos = particle.getPosition(), { speed, step } = this.options, x = pos.x / step, y = pos.y / step, eps = 0.001, n1a = this._simplex.noise(x, y + eps), n2a = this._simplex.noise(x, y - eps), a = (n1a - n2a) / (engine_1.double * eps), n1b = this._simplex.noise(x + eps, y), n2b = this._simplex.noise(x - eps, y), b = (n1b - n2b) / (engine_1.double * eps);
27
27
  particle.velocity.x = 0;
28
28
  particle.velocity.y = 0;
29
29
  return engine_1.Vector.create(speed * a, speed * -b);
package/umd/index.js CHANGED
@@ -46,9 +46,9 @@ var __importStar = (this && this.__importStar) || (function () {
46
46
  exports.curlNoisePathName = void 0;
47
47
  exports.loadCurlNoisePath = loadCurlNoisePath;
48
48
  exports.curlNoisePathName = "curlNoise";
49
- function loadCurlNoisePath(engine) {
50
- engine.checkVersion("4.0.0-alpha.3");
51
- engine.register(async (e) => {
49
+ async function loadCurlNoisePath(engine) {
50
+ engine.checkVersion("4.0.0-alpha.5");
51
+ await engine.register(async (e) => {
52
52
  const { CurlNoiseGenerator } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./CurlNoiseGenerator.js"))) : new Promise((resolve_1, reject_1) => { require(["./CurlNoiseGenerator.js"], resolve_1, reject_1); }).then(__importStar));
53
53
  e.addPathGenerator(exports.curlNoisePathName, new CurlNoiseGenerator());
54
54
  });
package/720.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 720.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_path_curl_noise=this.webpackChunk_tsparticles_path_curl_noise||[]).push([[720],{720(e,s,t){t.d(s,{CurlNoiseGenerator:()=>n});var i=t(303),o=t(226);const p={speed:.2,step:250};class n{constructor(){const e=new o.SimplexNoise;this._simplex=e.noise2d,this.options=(0,i.deepExtend)({},p)}generate(e){const s=e.getPosition(),{speed:t,step:o}=this.options,p=s.x/o,n=s.y/o,h=.001,a=(this._simplex.noise(p,n+h)-this._simplex.noise(p,n-h))/.002,c=(this._simplex.noise(p+h,n)-this._simplex.noise(p-h,n))/.002;return e.velocity.x=0,e.velocity.y=0,i.Vector.create(t*a,t*-c)}init(e){const s=e.actualOptions.particles.move.path.options;this.options.seed=s.seed,this.options.speed=(s.speed??p.speed)*e.retina.pixelRatio,this.options.step=s.step??p.step,this._simplex.seed(this.options.seed??(0,i.getRandom)())}reset(){}update(){}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Curl Noise Path v4.0.0-alpha.3 by Matteo Bruni */