@tsparticles/shape-line 3.1.0 → 3.2.1
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/103.min.js +2 -0
- package/103.min.js.LICENSE.txt +1 -0
- package/502.min.js +2 -0
- package/502.min.js.LICENSE.txt +1 -0
- package/browser/LineDrawer.js +3 -5
- package/browser/Utils.js +6 -0
- package/browser/index.js +1 -1
- package/cjs/LineDrawer.js +26 -5
- package/cjs/Utils.js +10 -0
- package/cjs/index.js +25 -2
- package/dist_browser_LineDrawer_js.js +30 -0
- package/dist_browser_Utils_js.js +30 -0
- package/esm/LineDrawer.js +3 -5
- package/esm/Utils.js +6 -0
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/report.html +3 -3
- package/tsparticles.shape.line.js +250 -36
- package/tsparticles.shape.line.min.js +1 -1
- package/tsparticles.shape.line.min.js.LICENSE.txt +1 -1
- package/types/LineDrawer.d.ts +1 -1
- package/types/Utils.d.ts +2 -0
- package/umd/LineDrawer.js +27 -5
- package/umd/Utils.js +20 -0
- package/umd/index.js +27 -3
package/103.min.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 103.min.js.LICENSE.txt */
|
|
2
|
+
(this.webpackChunk_tsparticles_shape_line=this.webpackChunk_tsparticles_shape_line||[]).push([[103],{103:(e,a,t)=>{function i(e){const{context:a,particle:t,radius:i}=e,s=t.shapeData;a.moveTo(-i,0),a.lineTo(i,0),a.lineCap=s?.cap??"butt"}t.d(a,{drawLine:()=>i})}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tsParticles Line Shape v3.2.1 by Matteo Bruni */
|
package/502.min.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 502.min.js.LICENSE.txt */
|
|
2
|
+
(this.webpackChunk_tsparticles_shape_line=this.webpackChunk_tsparticles_shape_line||[]).push([[502],{502:(e,s,a)=>{a.d(s,{LineDrawer:()=>n});class n{async draw(e){const{drawLine:s}=await a.e(103).then(a.bind(a,103));s(e)}getSidesCount(){return 1}}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tsParticles Line Shape v3.2.1 by Matteo Bruni */
|
package/browser/LineDrawer.js
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
const sides = 1;
|
|
2
2
|
export class LineDrawer {
|
|
3
|
-
draw(data) {
|
|
4
|
-
const {
|
|
5
|
-
|
|
6
|
-
context.lineTo(radius, centerY);
|
|
7
|
-
context.lineCap = shapeData?.cap ?? "butt";
|
|
3
|
+
async draw(data) {
|
|
4
|
+
const { drawLine } = await import("./Utils.js");
|
|
5
|
+
drawLine(data);
|
|
8
6
|
}
|
|
9
7
|
getSidesCount() {
|
|
10
8
|
return sides;
|
package/browser/Utils.js
ADDED
package/browser/index.js
CHANGED
package/cjs/LineDrawer.js
CHANGED
|
@@ -1,13 +1,34 @@
|
|
|
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
|
+
};
|
|
2
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
26
|
exports.LineDrawer = void 0;
|
|
4
27
|
const sides = 1;
|
|
5
28
|
class LineDrawer {
|
|
6
|
-
draw(data) {
|
|
7
|
-
const {
|
|
8
|
-
|
|
9
|
-
context.lineTo(radius, centerY);
|
|
10
|
-
context.lineCap = shapeData?.cap ?? "butt";
|
|
29
|
+
async draw(data) {
|
|
30
|
+
const { drawLine } = await Promise.resolve().then(() => __importStar(require("./Utils.js")));
|
|
31
|
+
drawLine(data);
|
|
11
32
|
}
|
|
12
33
|
getSidesCount() {
|
|
13
34
|
return sides;
|
package/cjs/Utils.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.drawLine = void 0;
|
|
4
|
+
function drawLine(data) {
|
|
5
|
+
const { context, particle, radius } = data, shapeData = particle.shapeData, centerY = 0;
|
|
6
|
+
context.moveTo(-radius, centerY);
|
|
7
|
+
context.lineTo(radius, centerY);
|
|
8
|
+
context.lineCap = shapeData?.cap ?? "butt";
|
|
9
|
+
}
|
|
10
|
+
exports.drawLine = drawLine;
|
package/cjs/index.js
CHANGED
|
@@ -1,8 +1,31 @@
|
|
|
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
|
+
};
|
|
2
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
26
|
exports.loadLineShape = void 0;
|
|
4
|
-
const LineDrawer_js_1 = require("./LineDrawer.js");
|
|
5
27
|
async function loadLineShape(engine, refresh = true) {
|
|
6
|
-
await
|
|
28
|
+
const { LineDrawer } = await Promise.resolve().then(() => __importStar(require("./LineDrawer.js")));
|
|
29
|
+
await engine.addShape("line", new LineDrawer(), refresh);
|
|
7
30
|
}
|
|
8
31
|
exports.loadLineShape = loadLineShape;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Author : Matteo Bruni
|
|
3
|
+
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
+
* Demo / Generator : https://particles.js.org/
|
|
5
|
+
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
+
* How to use? : Check the GitHub README
|
|
7
|
+
* v3.2.1
|
|
8
|
+
*/
|
|
9
|
+
"use strict";
|
|
10
|
+
/*
|
|
11
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
+
* This devtool is neither made for production nor for readable output files.
|
|
13
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
+
* or disable the default devtool with "devtool: false".
|
|
16
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
+
*/
|
|
18
|
+
(this["webpackChunk_tsparticles_shape_line"] = this["webpackChunk_tsparticles_shape_line"] || []).push([["dist_browser_LineDrawer_js"],{
|
|
19
|
+
|
|
20
|
+
/***/ "./dist/browser/LineDrawer.js":
|
|
21
|
+
/*!************************************!*\
|
|
22
|
+
!*** ./dist/browser/LineDrawer.js ***!
|
|
23
|
+
\************************************/
|
|
24
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
25
|
+
|
|
26
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ LineDrawer: () => (/* binding */ LineDrawer)\n/* harmony export */ });\nconst sides = 1;\nclass LineDrawer {\n async draw(data) {\n const {\n drawLine\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"./dist/browser/Utils.js\"));\n drawLine(data);\n }\n getSidesCount() {\n return sides;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-line/./dist/browser/LineDrawer.js?");
|
|
27
|
+
|
|
28
|
+
/***/ })
|
|
29
|
+
|
|
30
|
+
}]);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Author : Matteo Bruni
|
|
3
|
+
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
+
* Demo / Generator : https://particles.js.org/
|
|
5
|
+
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
+
* How to use? : Check the GitHub README
|
|
7
|
+
* v3.2.1
|
|
8
|
+
*/
|
|
9
|
+
"use strict";
|
|
10
|
+
/*
|
|
11
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
+
* This devtool is neither made for production nor for readable output files.
|
|
13
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
+
* or disable the default devtool with "devtool: false".
|
|
16
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
+
*/
|
|
18
|
+
(this["webpackChunk_tsparticles_shape_line"] = this["webpackChunk_tsparticles_shape_line"] || []).push([["dist_browser_Utils_js"],{
|
|
19
|
+
|
|
20
|
+
/***/ "./dist/browser/Utils.js":
|
|
21
|
+
/*!*******************************!*\
|
|
22
|
+
!*** ./dist/browser/Utils.js ***!
|
|
23
|
+
\*******************************/
|
|
24
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
25
|
+
|
|
26
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawLine: () => (/* binding */ drawLine)\n/* harmony export */ });\nfunction drawLine(data) {\n const {\n context,\n particle,\n radius\n } = data,\n shapeData = particle.shapeData,\n centerY = 0;\n context.moveTo(-radius, centerY);\n context.lineTo(radius, centerY);\n context.lineCap = shapeData?.cap ?? \"butt\";\n}\n\n//# sourceURL=webpack://@tsparticles/shape-line/./dist/browser/Utils.js?");
|
|
27
|
+
|
|
28
|
+
/***/ })
|
|
29
|
+
|
|
30
|
+
}]);
|
package/esm/LineDrawer.js
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
const sides = 1;
|
|
2
2
|
export class LineDrawer {
|
|
3
|
-
draw(data) {
|
|
4
|
-
const {
|
|
5
|
-
|
|
6
|
-
context.lineTo(radius, centerY);
|
|
7
|
-
context.lineCap = shapeData?.cap ?? "butt";
|
|
3
|
+
async draw(data) {
|
|
4
|
+
const { drawLine } = await import("./Utils.js");
|
|
5
|
+
drawLine(data);
|
|
8
6
|
}
|
|
9
7
|
getSidesCount() {
|
|
10
8
|
return sides;
|
package/esm/Utils.js
ADDED
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/shape-line",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "tsParticles line shape",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"./package.json": "./package.json"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@tsparticles/engine": "^3.1
|
|
62
|
+
"@tsparticles/engine": "^3.2.1"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"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/shape-line [
|
|
6
|
+
<title>@tsparticles/shape-line [31 Jan 2024 at 09:54]</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>
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
<body>
|
|
32
32
|
<div id="app"></div>
|
|
33
33
|
<script>
|
|
34
|
-
window.chartData = [
|
|
35
|
-
window.entrypoints = ["tsparticles.shape.line
|
|
34
|
+
window.chartData = [];
|
|
35
|
+
window.entrypoints = ["tsparticles.shape.line.min"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|
|
38
38
|
</body>
|
|
@@ -4,7 +4,15 @@
|
|
|
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.1
|
|
7
|
+
* v3.2.1
|
|
8
|
+
*/
|
|
9
|
+
/*
|
|
10
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
11
|
+
* This devtool is neither made for production nor for readable output files.
|
|
12
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
13
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
14
|
+
* or disable the default devtool with "devtool: false".
|
|
15
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
8
16
|
*/
|
|
9
17
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
10
18
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -18,8 +26,46 @@
|
|
|
18
26
|
})(this, () => {
|
|
19
27
|
return /******/ (() => { // webpackBootstrap
|
|
20
28
|
/******/ "use strict";
|
|
21
|
-
/******/
|
|
22
|
-
|
|
29
|
+
/******/ var __webpack_modules__ = ({
|
|
30
|
+
|
|
31
|
+
/***/ "./dist/browser/index.js":
|
|
32
|
+
/*!*******************************!*\
|
|
33
|
+
!*** ./dist/browser/index.js ***!
|
|
34
|
+
\*******************************/
|
|
35
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36
|
+
|
|
37
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadLineShape: () => (/* binding */ loadLineShape)\n/* harmony export */ });\nasync function loadLineShape(engine, refresh = true) {\n const {\n LineDrawer\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_LineDrawer_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./LineDrawer.js */ \"./dist/browser/LineDrawer.js\"));\n await engine.addShape(\"line\", new LineDrawer(), refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/shape-line/./dist/browser/index.js?");
|
|
38
|
+
|
|
39
|
+
/***/ })
|
|
40
|
+
|
|
41
|
+
/******/ });
|
|
42
|
+
/************************************************************************/
|
|
43
|
+
/******/ // The module cache
|
|
44
|
+
/******/ var __webpack_module_cache__ = {};
|
|
45
|
+
/******/
|
|
46
|
+
/******/ // The require function
|
|
47
|
+
/******/ function __webpack_require__(moduleId) {
|
|
48
|
+
/******/ // Check if module is in cache
|
|
49
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
50
|
+
/******/ if (cachedModule !== undefined) {
|
|
51
|
+
/******/ return cachedModule.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/ // Create a new module (and put it into the cache)
|
|
54
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
55
|
+
/******/ // no module.id needed
|
|
56
|
+
/******/ // no module.loaded needed
|
|
57
|
+
/******/ exports: {}
|
|
58
|
+
/******/ };
|
|
59
|
+
/******/
|
|
60
|
+
/******/ // Execute the module function
|
|
61
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
62
|
+
/******/
|
|
63
|
+
/******/ // Return the exports of the module
|
|
64
|
+
/******/ return module.exports;
|
|
65
|
+
/******/ }
|
|
66
|
+
/******/
|
|
67
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
68
|
+
/******/ __webpack_require__.m = __webpack_modules__;
|
|
23
69
|
/******/
|
|
24
70
|
/************************************************************************/
|
|
25
71
|
/******/ /* webpack/runtime/define property getters */
|
|
@@ -34,11 +80,91 @@ return /******/ (() => { // webpackBootstrap
|
|
|
34
80
|
/******/ };
|
|
35
81
|
/******/ })();
|
|
36
82
|
/******/
|
|
83
|
+
/******/ /* webpack/runtime/ensure chunk */
|
|
84
|
+
/******/ (() => {
|
|
85
|
+
/******/ __webpack_require__.f = {};
|
|
86
|
+
/******/ // This file contains only the entry chunk.
|
|
87
|
+
/******/ // The chunk loading function for additional chunks
|
|
88
|
+
/******/ __webpack_require__.e = (chunkId) => {
|
|
89
|
+
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
90
|
+
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
91
|
+
/******/ return promises;
|
|
92
|
+
/******/ }, []));
|
|
93
|
+
/******/ };
|
|
94
|
+
/******/ })();
|
|
95
|
+
/******/
|
|
96
|
+
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
97
|
+
/******/ (() => {
|
|
98
|
+
/******/ // This function allow to reference async chunks
|
|
99
|
+
/******/ __webpack_require__.u = (chunkId) => {
|
|
100
|
+
/******/ // return url for filenames based on template
|
|
101
|
+
/******/ return "" + chunkId + ".js";
|
|
102
|
+
/******/ };
|
|
103
|
+
/******/ })();
|
|
104
|
+
/******/
|
|
105
|
+
/******/ /* webpack/runtime/global */
|
|
106
|
+
/******/ (() => {
|
|
107
|
+
/******/ __webpack_require__.g = (function() {
|
|
108
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
109
|
+
/******/ try {
|
|
110
|
+
/******/ return this || new Function('return this')();
|
|
111
|
+
/******/ } catch (e) {
|
|
112
|
+
/******/ if (typeof window === 'object') return window;
|
|
113
|
+
/******/ }
|
|
114
|
+
/******/ })();
|
|
115
|
+
/******/ })();
|
|
116
|
+
/******/
|
|
37
117
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
38
118
|
/******/ (() => {
|
|
39
119
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
40
120
|
/******/ })();
|
|
41
121
|
/******/
|
|
122
|
+
/******/ /* webpack/runtime/load script */
|
|
123
|
+
/******/ (() => {
|
|
124
|
+
/******/ var inProgress = {};
|
|
125
|
+
/******/ var dataWebpackPrefix = "@tsparticles/shape-line:";
|
|
126
|
+
/******/ // loadScript function to load a script via script tag
|
|
127
|
+
/******/ __webpack_require__.l = (url, done, key, chunkId) => {
|
|
128
|
+
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
|
|
129
|
+
/******/ var script, needAttach;
|
|
130
|
+
/******/ if(key !== undefined) {
|
|
131
|
+
/******/ var scripts = document.getElementsByTagName("script");
|
|
132
|
+
/******/ for(var i = 0; i < scripts.length; i++) {
|
|
133
|
+
/******/ var s = scripts[i];
|
|
134
|
+
/******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
|
|
135
|
+
/******/ }
|
|
136
|
+
/******/ }
|
|
137
|
+
/******/ if(!script) {
|
|
138
|
+
/******/ needAttach = true;
|
|
139
|
+
/******/ script = document.createElement('script');
|
|
140
|
+
/******/
|
|
141
|
+
/******/ script.charset = 'utf-8';
|
|
142
|
+
/******/ script.timeout = 120;
|
|
143
|
+
/******/ if (__webpack_require__.nc) {
|
|
144
|
+
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
|
145
|
+
/******/ }
|
|
146
|
+
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
|
|
147
|
+
/******/
|
|
148
|
+
/******/ script.src = url;
|
|
149
|
+
/******/ }
|
|
150
|
+
/******/ inProgress[url] = [done];
|
|
151
|
+
/******/ var onScriptComplete = (prev, event) => {
|
|
152
|
+
/******/ // avoid mem leaks in IE.
|
|
153
|
+
/******/ script.onerror = script.onload = null;
|
|
154
|
+
/******/ clearTimeout(timeout);
|
|
155
|
+
/******/ var doneFns = inProgress[url];
|
|
156
|
+
/******/ delete inProgress[url];
|
|
157
|
+
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
158
|
+
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
159
|
+
/******/ if(prev) return prev(event);
|
|
160
|
+
/******/ }
|
|
161
|
+
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
162
|
+
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
163
|
+
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
|
164
|
+
/******/ needAttach && document.head.appendChild(script);
|
|
165
|
+
/******/ };
|
|
166
|
+
/******/ })();
|
|
167
|
+
/******/
|
|
42
168
|
/******/ /* webpack/runtime/make namespace object */
|
|
43
169
|
/******/ (() => {
|
|
44
170
|
/******/ // define __esModule on exports
|
|
@@ -50,40 +176,128 @@ return /******/ (() => { // webpackBootstrap
|
|
|
50
176
|
/******/ };
|
|
51
177
|
/******/ })();
|
|
52
178
|
/******/
|
|
179
|
+
/******/ /* webpack/runtime/publicPath */
|
|
180
|
+
/******/ (() => {
|
|
181
|
+
/******/ var scriptUrl;
|
|
182
|
+
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
|
|
183
|
+
/******/ var document = __webpack_require__.g.document;
|
|
184
|
+
/******/ if (!scriptUrl && document) {
|
|
185
|
+
/******/ if (document.currentScript)
|
|
186
|
+
/******/ scriptUrl = document.currentScript.src;
|
|
187
|
+
/******/ if (!scriptUrl) {
|
|
188
|
+
/******/ var scripts = document.getElementsByTagName("script");
|
|
189
|
+
/******/ if(scripts.length) {
|
|
190
|
+
/******/ var i = scripts.length - 1;
|
|
191
|
+
/******/ while (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;
|
|
192
|
+
/******/ }
|
|
193
|
+
/******/ }
|
|
194
|
+
/******/ }
|
|
195
|
+
/******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
|
|
196
|
+
/******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
|
|
197
|
+
/******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
|
|
198
|
+
/******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
|
|
199
|
+
/******/ __webpack_require__.p = scriptUrl;
|
|
200
|
+
/******/ })();
|
|
201
|
+
/******/
|
|
202
|
+
/******/ /* webpack/runtime/jsonp chunk loading */
|
|
203
|
+
/******/ (() => {
|
|
204
|
+
/******/ // no baseURI
|
|
205
|
+
/******/
|
|
206
|
+
/******/ // object to store loaded and loading chunks
|
|
207
|
+
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
208
|
+
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
|
209
|
+
/******/ var installedChunks = {
|
|
210
|
+
/******/ "tsparticles.shape.line": 0
|
|
211
|
+
/******/ };
|
|
212
|
+
/******/
|
|
213
|
+
/******/ __webpack_require__.f.j = (chunkId, promises) => {
|
|
214
|
+
/******/ // JSONP chunk loading for javascript
|
|
215
|
+
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
|
216
|
+
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
|
217
|
+
/******/
|
|
218
|
+
/******/ // a Promise means "currently loading".
|
|
219
|
+
/******/ if(installedChunkData) {
|
|
220
|
+
/******/ promises.push(installedChunkData[2]);
|
|
221
|
+
/******/ } else {
|
|
222
|
+
/******/ if(true) { // all chunks have JS
|
|
223
|
+
/******/ // setup Promise in chunk cache
|
|
224
|
+
/******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
|
|
225
|
+
/******/ promises.push(installedChunkData[2] = promise);
|
|
226
|
+
/******/
|
|
227
|
+
/******/ // start chunk loading
|
|
228
|
+
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
|
229
|
+
/******/ // create error before stack unwound to get useful stacktrace later
|
|
230
|
+
/******/ var error = new Error();
|
|
231
|
+
/******/ var loadingEnded = (event) => {
|
|
232
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
|
233
|
+
/******/ installedChunkData = installedChunks[chunkId];
|
|
234
|
+
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
|
235
|
+
/******/ if(installedChunkData) {
|
|
236
|
+
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
|
237
|
+
/******/ var realSrc = event && event.target && event.target.src;
|
|
238
|
+
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
|
239
|
+
/******/ error.name = 'ChunkLoadError';
|
|
240
|
+
/******/ error.type = errorType;
|
|
241
|
+
/******/ error.request = realSrc;
|
|
242
|
+
/******/ installedChunkData[1](error);
|
|
243
|
+
/******/ }
|
|
244
|
+
/******/ }
|
|
245
|
+
/******/ };
|
|
246
|
+
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
|
|
247
|
+
/******/ }
|
|
248
|
+
/******/ }
|
|
249
|
+
/******/ }
|
|
250
|
+
/******/ };
|
|
251
|
+
/******/
|
|
252
|
+
/******/ // no prefetching
|
|
253
|
+
/******/
|
|
254
|
+
/******/ // no preloaded
|
|
255
|
+
/******/
|
|
256
|
+
/******/ // no HMR
|
|
257
|
+
/******/
|
|
258
|
+
/******/ // no HMR manifest
|
|
259
|
+
/******/
|
|
260
|
+
/******/ // no on chunks loaded
|
|
261
|
+
/******/
|
|
262
|
+
/******/ // install a JSONP callback for chunk loading
|
|
263
|
+
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
|
|
264
|
+
/******/ var chunkIds = data[0];
|
|
265
|
+
/******/ var moreModules = data[1];
|
|
266
|
+
/******/ var runtime = data[2];
|
|
267
|
+
/******/ // add "moreModules" to the modules object,
|
|
268
|
+
/******/ // then flag all "chunkIds" as loaded and fire callback
|
|
269
|
+
/******/ var moduleId, chunkId, i = 0;
|
|
270
|
+
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
|
|
271
|
+
/******/ for(moduleId in moreModules) {
|
|
272
|
+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
|
273
|
+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
274
|
+
/******/ }
|
|
275
|
+
/******/ }
|
|
276
|
+
/******/ if(runtime) var result = runtime(__webpack_require__);
|
|
277
|
+
/******/ }
|
|
278
|
+
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
|
279
|
+
/******/ for(;i < chunkIds.length; i++) {
|
|
280
|
+
/******/ chunkId = chunkIds[i];
|
|
281
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
|
282
|
+
/******/ installedChunks[chunkId][0]();
|
|
283
|
+
/******/ }
|
|
284
|
+
/******/ installedChunks[chunkId] = 0;
|
|
285
|
+
/******/ }
|
|
286
|
+
/******/
|
|
287
|
+
/******/ }
|
|
288
|
+
/******/
|
|
289
|
+
/******/ var chunkLoadingGlobal = this["webpackChunk_tsparticles_shape_line"] = this["webpackChunk_tsparticles_shape_line"] || [];
|
|
290
|
+
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
|
291
|
+
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
|
292
|
+
/******/ })();
|
|
293
|
+
/******/
|
|
53
294
|
/************************************************************************/
|
|
54
|
-
|
|
55
|
-
//
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
loadLineShape: () => (/* binding */ loadLineShape)
|
|
61
|
-
});
|
|
62
|
-
|
|
63
|
-
;// CONCATENATED MODULE: ./dist/browser/LineDrawer.js
|
|
64
|
-
const sides = 1;
|
|
65
|
-
class LineDrawer {
|
|
66
|
-
draw(data) {
|
|
67
|
-
const {
|
|
68
|
-
context,
|
|
69
|
-
particle,
|
|
70
|
-
radius
|
|
71
|
-
} = data,
|
|
72
|
-
shapeData = particle.shapeData,
|
|
73
|
-
centerY = 0;
|
|
74
|
-
context.moveTo(-radius, centerY);
|
|
75
|
-
context.lineTo(radius, centerY);
|
|
76
|
-
context.lineCap = shapeData?.cap ?? "butt";
|
|
77
|
-
}
|
|
78
|
-
getSidesCount() {
|
|
79
|
-
return sides;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
;// CONCATENATED MODULE: ./dist/browser/index.js
|
|
83
|
-
|
|
84
|
-
async function loadLineShape(engine, refresh = true) {
|
|
85
|
-
await engine.addShape("line", new LineDrawer(), refresh);
|
|
86
|
-
}
|
|
295
|
+
/******/
|
|
296
|
+
/******/ // startup
|
|
297
|
+
/******/ // Load entry module and return exports
|
|
298
|
+
/******/ // This entry module can't be inlined because the eval devtool is used.
|
|
299
|
+
/******/ var __webpack_exports__ = __webpack_require__("./dist/browser/index.js");
|
|
300
|
+
/******/
|
|
87
301
|
/******/ return __webpack_exports__;
|
|
88
302
|
/******/ })()
|
|
89
303
|
;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see tsparticles.shape.line.min.js.LICENSE.txt */
|
|
2
|
-
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var
|
|
2
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(()=>(()=>{var e,t,r={},o={};function n(e){var t=o[e];if(void 0!==t)return t.exports;var i=o[e]={exports:{}};return r[e](i,i.exports,n),i.exports}n.m=r,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),e={},t="@tsparticles/shape-line:",n.l=(r,o,i,a)=>{if(e[r])e[r].push(o);else{var s,l;if(void 0!==i)for(var c=document.getElementsByTagName("script"),p=0;p<c.length;p++){var u=c[p];if(u.getAttribute("src")==r||u.getAttribute("data-webpack")==t+i){s=u;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,n.nc&&s.setAttribute("nonce",n.nc),s.setAttribute("data-webpack",t+i),s.src=r),e[r]=[o];var d=(t,o)=>{s.onerror=s.onload=null,clearTimeout(f);var n=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),n&&n.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),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;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;)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={99: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 i=new Promise(((r,n)=>o=e[t]=[r,n]));r.push(o[2]=i);var a=n.p+n.u(t),s=new Error;n.l(a,(r=>{if(n.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var i=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",s.name="ChunkLoadError",s.type=i,s.request=a,o[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var o,i,a=r[0],s=r[1],l=r[2],c=0;if(a.some((t=>0!==e[t]))){for(o in s)n.o(s,o)&&(n.m[o]=s[o]);if(l)l(n)}for(t&&t(r);c<a.length;c++)i=a[c],n.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=this.webpackChunk_tsparticles_shape_line=this.webpackChunk_tsparticles_shape_line||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var i={};async function a(e,t=!0){const{LineDrawer:r}=await n.e(502).then(n.bind(n,502));await e.addShape("line",new r,t)}return n.r(i),n.d(i,{loadLineShape:()=>a}),i})()));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Line Shape v3.1
|
|
1
|
+
/*! tsParticles Line Shape v3.2.1 by Matteo Bruni */
|
package/types/LineDrawer.d.ts
CHANGED
package/types/Utils.d.ts
ADDED
package/umd/LineDrawer.js
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2
|
+
if (k2 === undefined) k2 = k;
|
|
3
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
4
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
5
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(o, k2, desc);
|
|
8
|
+
}) : (function(o, m, k, k2) {
|
|
9
|
+
if (k2 === undefined) k2 = k;
|
|
10
|
+
o[k2] = m[k];
|
|
11
|
+
}));
|
|
12
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
13
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
14
|
+
}) : function(o, v) {
|
|
15
|
+
o["default"] = v;
|
|
16
|
+
});
|
|
17
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
18
|
+
if (mod && mod.__esModule) return mod;
|
|
19
|
+
var result = {};
|
|
20
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
21
|
+
__setModuleDefault(result, mod);
|
|
22
|
+
return result;
|
|
23
|
+
};
|
|
1
24
|
(function (factory) {
|
|
2
25
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
3
26
|
var v = factory(require, exports);
|
|
@@ -8,15 +31,14 @@
|
|
|
8
31
|
}
|
|
9
32
|
})(function (require, exports) {
|
|
10
33
|
"use strict";
|
|
34
|
+
var __syncRequire = typeof module === "object" && typeof module.exports === "object";
|
|
11
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
36
|
exports.LineDrawer = void 0;
|
|
13
37
|
const sides = 1;
|
|
14
38
|
class LineDrawer {
|
|
15
|
-
draw(data) {
|
|
16
|
-
const {
|
|
17
|
-
|
|
18
|
-
context.lineTo(radius, centerY);
|
|
19
|
-
context.lineCap = shapeData?.cap ?? "butt";
|
|
39
|
+
async draw(data) {
|
|
40
|
+
const { drawLine } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./Utils.js"))) : new Promise((resolve_1, reject_1) => { require(["./Utils.js"], resolve_1, reject_1); }).then(__importStar));
|
|
41
|
+
drawLine(data);
|
|
20
42
|
}
|
|
21
43
|
getSidesCount() {
|
|
22
44
|
return sides;
|
package/umd/Utils.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
(function (factory) {
|
|
2
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
3
|
+
var v = factory(require, exports);
|
|
4
|
+
if (v !== undefined) module.exports = v;
|
|
5
|
+
}
|
|
6
|
+
else if (typeof define === "function" && define.amd) {
|
|
7
|
+
define(["require", "exports"], factory);
|
|
8
|
+
}
|
|
9
|
+
})(function (require, exports) {
|
|
10
|
+
"use strict";
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.drawLine = void 0;
|
|
13
|
+
function drawLine(data) {
|
|
14
|
+
const { context, particle, radius } = data, shapeData = particle.shapeData, centerY = 0;
|
|
15
|
+
context.moveTo(-radius, centerY);
|
|
16
|
+
context.lineTo(radius, centerY);
|
|
17
|
+
context.lineCap = shapeData?.cap ?? "butt";
|
|
18
|
+
}
|
|
19
|
+
exports.drawLine = drawLine;
|
|
20
|
+
});
|
package/umd/index.js
CHANGED
|
@@ -1,18 +1,42 @@
|
|
|
1
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2
|
+
if (k2 === undefined) k2 = k;
|
|
3
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
4
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
5
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(o, k2, desc);
|
|
8
|
+
}) : (function(o, m, k, k2) {
|
|
9
|
+
if (k2 === undefined) k2 = k;
|
|
10
|
+
o[k2] = m[k];
|
|
11
|
+
}));
|
|
12
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
13
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
14
|
+
}) : function(o, v) {
|
|
15
|
+
o["default"] = v;
|
|
16
|
+
});
|
|
17
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
18
|
+
if (mod && mod.__esModule) return mod;
|
|
19
|
+
var result = {};
|
|
20
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
21
|
+
__setModuleDefault(result, mod);
|
|
22
|
+
return result;
|
|
23
|
+
};
|
|
1
24
|
(function (factory) {
|
|
2
25
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
3
26
|
var v = factory(require, exports);
|
|
4
27
|
if (v !== undefined) module.exports = v;
|
|
5
28
|
}
|
|
6
29
|
else if (typeof define === "function" && define.amd) {
|
|
7
|
-
define(["require", "exports"
|
|
30
|
+
define(["require", "exports"], factory);
|
|
8
31
|
}
|
|
9
32
|
})(function (require, exports) {
|
|
10
33
|
"use strict";
|
|
34
|
+
var __syncRequire = typeof module === "object" && typeof module.exports === "object";
|
|
11
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
36
|
exports.loadLineShape = void 0;
|
|
13
|
-
const LineDrawer_js_1 = require("./LineDrawer.js");
|
|
14
37
|
async function loadLineShape(engine, refresh = true) {
|
|
15
|
-
await
|
|
38
|
+
const { LineDrawer } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./LineDrawer.js"))) : new Promise((resolve_1, reject_1) => { require(["./LineDrawer.js"], resolve_1, reject_1); }).then(__importStar));
|
|
39
|
+
await engine.addShape("line", new LineDrawer(), refresh);
|
|
16
40
|
}
|
|
17
41
|
exports.loadLineShape = loadLineShape;
|
|
18
42
|
});
|