@tsparticles/path-zig-zag 3.2.2 → 3.3.0
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/153.min.js +2 -0
- package/153.min.js.LICENSE.txt +1 -0
- package/browser/ZigZagPathGenerator.js +2 -3
- package/cjs/ZigZagPathGenerator.js +2 -3
- package/cjs/index.js +1 -24
- package/dist_browser_ZigZagPathGenerator_js.js +2 -2
- package/esm/ZigZagPathGenerator.js +2 -3
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.path.zigzag.js +2 -2
- package/tsparticles.path.zigzag.min.js +1 -1
- package/tsparticles.path.zigzag.min.js.LICENSE.txt +1 -1
- package/types/ZigZagPathGenerator.d.ts +2 -2
- package/umd/ZigZagPathGenerator.js +2 -3
- package/933.min.js +0 -2
- package/933.min.js.LICENSE.txt +0 -1
package/153.min.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 153.min.js.LICENSE.txt */
|
|
2
|
+
(this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[]).push([[153],{153:(t,e,a)=>{a.d(e,{ZigZagPathGenerator:()=>g});var i=a(303);const n=.5*Math.PI;class g{constructor(){this.options={waveHeight:{min:0,max:3},waveLength:{min:0,max:5}}}generate(t,e){void 0===t.zigzag&&(t.zigzag={counter:(0,i.getRandom)(),waveHeight:(0,i.getRangeValue)(this.options.waveHeight),waveLength:(0,i.getRangeValue)(this.options.waveLength)});const a=.5/t.zigzag.waveLength*e.factor;t.zigzag.counter+=a;const g=t.zigzag.waveHeight*Math.sin(t.zigzag.counter);return t.position.x+=g*Math.cos(t.velocity.angle+n),t.position.y+=g*Math.sin(t.velocity.angle+n),i.Vector.origin}init(t){const e=t.actualOptions.particles.move.path.options;this.options.waveLength=e.waveLength??this.options.waveLength,this.options.waveHeight=e.waveHeight??this.options.waveHeight}reset(){}update(){}}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tsParticles Zig Zag Path v3.3.0 by Matteo Bruni */
|
|
@@ -20,13 +20,12 @@ export class ZigZagPathGenerator {
|
|
|
20
20
|
const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
|
|
21
21
|
particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
|
|
22
22
|
particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
|
|
23
|
-
return
|
|
23
|
+
return Vector.origin;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
init(container) {
|
|
26
26
|
const options = container.actualOptions.particles.move.path.options;
|
|
27
27
|
this.options.waveLength = options.waveLength ?? this.options.waveLength;
|
|
28
28
|
this.options.waveHeight = options.waveHeight ?? this.options.waveHeight;
|
|
29
|
-
await Promise.resolve();
|
|
30
29
|
}
|
|
31
30
|
reset() {
|
|
32
31
|
}
|
|
@@ -23,13 +23,12 @@ class ZigZagPathGenerator {
|
|
|
23
23
|
const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
|
|
24
24
|
particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
|
|
25
25
|
particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
|
|
26
|
-
return
|
|
26
|
+
return engine_1.Vector.origin;
|
|
27
27
|
}
|
|
28
|
-
|
|
28
|
+
init(container) {
|
|
29
29
|
const options = container.actualOptions.particles.move.path.options;
|
|
30
30
|
this.options.waveLength = options.waveLength ?? this.options.waveLength;
|
|
31
31
|
this.options.waveHeight = options.waveHeight ?? this.options.waveHeight;
|
|
32
|
-
await Promise.resolve();
|
|
33
32
|
}
|
|
34
33
|
reset() {
|
|
35
34
|
}
|
package/cjs/index.js
CHANGED
|
@@ -1,32 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
3
|
exports.loadZigZagPath = exports.zigZagPathName = void 0;
|
|
27
4
|
exports.zigZagPathName = "zigZagPathGenerator";
|
|
28
5
|
async function loadZigZagPath(engine, refresh = true) {
|
|
29
|
-
const { ZigZagPathGenerator } = await
|
|
6
|
+
const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
|
|
30
7
|
await engine.addPathGenerator(exports.zigZagPathName, new ZigZagPathGenerator(), refresh);
|
|
31
8
|
}
|
|
32
9
|
exports.loadZigZagPath = loadZigZagPath;
|
|
@@ -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
|
-
* v3.
|
|
7
|
+
* v3.3.0
|
|
8
8
|
*/
|
|
9
9
|
"use strict";
|
|
10
10
|
/*
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
\*********************************************/
|
|
24
24
|
/***/ ((__unused_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 */ ZigZagPathGenerator: () => (/* binding */ ZigZagPathGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst angularFrequencyFactor = 0.5,\n half = 0.5,\n halfPI = Math.PI * half;\nclass ZigZagPathGenerator {\n constructor() {\n this.options = {\n waveHeight: {\n min: 0,\n max: 3\n },\n waveLength: {\n min: 0,\n max: 5\n }\n };\n }\n generate(particle, delta) {\n if (particle.zigzag === undefined) {\n particle.zigzag = {\n counter: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)(),\n waveHeight: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(this.options.waveHeight),\n waveLength: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(this.options.waveLength)\n };\n }\n const angularFrequency = angularFrequencyFactor / particle.zigzag.waveLength * delta.factor;\n particle.zigzag.counter += angularFrequency;\n const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);\n particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);\n particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);\n return
|
|
26
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ZigZagPathGenerator: () => (/* binding */ ZigZagPathGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst angularFrequencyFactor = 0.5,\n half = 0.5,\n halfPI = Math.PI * half;\nclass ZigZagPathGenerator {\n constructor() {\n this.options = {\n waveHeight: {\n min: 0,\n max: 3\n },\n waveLength: {\n min: 0,\n max: 5\n }\n };\n }\n generate(particle, delta) {\n if (particle.zigzag === undefined) {\n particle.zigzag = {\n counter: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)(),\n waveHeight: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(this.options.waveHeight),\n waveLength: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(this.options.waveLength)\n };\n }\n const angularFrequency = angularFrequencyFactor / particle.zigzag.waveLength * delta.factor;\n particle.zigzag.counter += angularFrequency;\n const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);\n particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);\n particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);\n return _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin;\n }\n init(container) {\n const options = container.actualOptions.particles.move.path.options;\n this.options.waveLength = options.waveLength ?? this.options.waveLength;\n this.options.waveHeight = options.waveHeight ?? this.options.waveHeight;\n }\n reset() {}\n update() {}\n}\n\n//# sourceURL=webpack://@tsparticles/path-zig-zag/./dist/browser/ZigZagPathGenerator.js?");
|
|
27
27
|
|
|
28
28
|
/***/ })
|
|
29
29
|
|
|
@@ -20,13 +20,12 @@ export class ZigZagPathGenerator {
|
|
|
20
20
|
const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
|
|
21
21
|
particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
|
|
22
22
|
particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
|
|
23
|
-
return
|
|
23
|
+
return Vector.origin;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
init(container) {
|
|
26
26
|
const options = container.actualOptions.particles.move.path.options;
|
|
27
27
|
this.options.waveLength = options.waveLength ?? this.options.waveLength;
|
|
28
28
|
this.options.waveHeight = options.waveHeight ?? this.options.waveHeight;
|
|
29
|
-
await Promise.resolve();
|
|
30
29
|
}
|
|
31
30
|
reset() {
|
|
32
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/path-zig-zag",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "tsParticles zig zag path",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"./package.json": "./package.json"
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
|
-
"@tsparticles/engine": "^3.
|
|
104
|
+
"@tsparticles/engine": "^3.3.0"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": {
|
|
107
107
|
"access": "public"
|
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-zig-zag [
|
|
6
|
+
<title>@tsparticles/path-zig-zag [27 Feb 2024 at 12:16]</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
|
-
* v3.
|
|
7
|
+
* v3.3.0
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -210,7 +210,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
|
|
|
210
210
|
/******/ var scripts = document.getElementsByTagName("script");
|
|
211
211
|
/******/ if(scripts.length) {
|
|
212
212
|
/******/ var i = scripts.length - 1;
|
|
213
|
-
/******/ while (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;
|
|
213
|
+
/******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
|
|
214
214
|
/******/ }
|
|
215
215
|
/******/ }
|
|
216
216
|
/******/ }
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see tsparticles.path.zigzag.min.js.LICENSE.txt */
|
|
2
|
-
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e=>(()=>{var t,r,o={
|
|
2
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e=>(()=>{var t,r,o={303:t=>{t.exports=e}},a={};function n(e){var t=a[e];if(void 0!==t)return t.exports;var r=a[e]={exports:{}};return o[e](r,r.exports,n),r.exports}n.m=o,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce(((t,r)=>(n.f[r](e,t),t)),[])),n.u=e=>e+".min.js",n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),t={},r="@tsparticles/path-zig-zag:",n.l=(e,o,a,i)=>{if(t[e])t[e].push(o);else{var s,c;if(void 0!==a)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")==r+a){s=u;break}}s||(c=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,n.nc&&s.setAttribute("nonce",n.nc),s.setAttribute("data-webpack",r+a),s.src=e),t[e]=[o];var d=(r,o)=>{s.onerror=s.onload=null,clearTimeout(f);var a=t[e];if(delete t[e],s.parentNode&&s.parentNode.removeChild(s),a&&a.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),c&&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;n.g.importScripts&&(e=n.g.location+"");var t=n.g.document;if(!e&&t&&(t.currentScript&&(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(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=e})(),(()=>{var e={952:0};n.f.j=(t,r)=>{var o=n.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else{var a=new Promise(((r,a)=>o=e[t]=[r,a]));r.push(o[2]=a);var i=n.p+n.u(t),s=new Error;n.l(i,(r=>{if(n.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+a+": "+i+")",s.name="ChunkLoadError",s.type=a,s.request=i,o[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var o,a,i=r[0],s=r[1],c=r[2],l=0;if(i.some((t=>0!==e[t]))){for(o in s)n.o(s,o)&&(n.m[o]=s[o]);if(c)c(n)}for(t&&t(r);l<i.length;l++)a=i[l],n.o(e,a)&&e[a]&&e[a][0](),e[a]=0},r=this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var i={};return(()=>{n.r(i),n.d(i,{loadZigZagPath:()=>t,zigZagPathName:()=>e});const e="zigZagPathGenerator";async function t(t,r=!0){const{ZigZagPathGenerator:o}=await n.e(153).then(n.bind(n,153));await t.addPathGenerator(e,new o,r)}})(),i})()));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Zig Zag Path v3.
|
|
1
|
+
/*! tsParticles Zig Zag Path v3.3.0 by Matteo Bruni */
|
|
@@ -14,8 +14,8 @@ interface IZigZagOptions {
|
|
|
14
14
|
export declare class ZigZagPathGenerator implements IMovePathGenerator {
|
|
15
15
|
options: IZigZagOptions;
|
|
16
16
|
constructor();
|
|
17
|
-
generate(particle: ZigZagParticle, delta: IDelta):
|
|
18
|
-
init(container: Container):
|
|
17
|
+
generate(particle: ZigZagParticle, delta: IDelta): Vector;
|
|
18
|
+
init(container: Container): void;
|
|
19
19
|
reset(): void;
|
|
20
20
|
update(): void;
|
|
21
21
|
}
|
|
@@ -32,13 +32,12 @@
|
|
|
32
32
|
const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
|
|
33
33
|
particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
|
|
34
34
|
particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
|
|
35
|
-
return
|
|
35
|
+
return engine_1.Vector.origin;
|
|
36
36
|
}
|
|
37
|
-
|
|
37
|
+
init(container) {
|
|
38
38
|
const options = container.actualOptions.particles.move.path.options;
|
|
39
39
|
this.options.waveLength = options.waveLength ?? this.options.waveLength;
|
|
40
40
|
this.options.waveHeight = options.waveHeight ?? this.options.waveHeight;
|
|
41
|
-
await Promise.resolve();
|
|
42
41
|
}
|
|
43
42
|
reset() {
|
|
44
43
|
}
|
package/933.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 933.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[]).push([[933],{933:(t,e,a)=>{a.d(e,{ZigZagPathGenerator:()=>n});var i=a(533);const o=.5*Math.PI;class n{constructor(){this.options={waveHeight:{min:0,max:3},waveLength:{min:0,max:5}}}generate(t,e){void 0===t.zigzag&&(t.zigzag={counter:(0,i.getRandom)(),waveHeight:(0,i.getRangeValue)(this.options.waveHeight),waveLength:(0,i.getRangeValue)(this.options.waveLength)});const a=.5/t.zigzag.waveLength*e.factor;t.zigzag.counter+=a;const n=t.zigzag.waveHeight*Math.sin(t.zigzag.counter);return t.position.x+=n*Math.cos(t.velocity.angle+o),t.position.y+=n*Math.sin(t.velocity.angle+o),Promise.resolve(i.Vector.origin)}async init(t){const e=t.actualOptions.particles.move.path.options;this.options.waveLength=e.waveLength??this.options.waveLength,this.options.waveHeight=e.waveHeight??this.options.waveHeight,await Promise.resolve()}reset(){}update(){}}}}]);
|
package/933.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Zig Zag Path v3.2.2 by Matteo Bruni */
|