@tsparticles/shape-cards 3.3.0 → 3.5.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.
Files changed (43) hide show
  1. package/browser/ClubDrawer.js +3 -0
  2. package/browser/DiamondDrawer.js +3 -0
  3. package/browser/HeartDrawer.js +3 -0
  4. package/browser/SpadeDrawer.js +3 -0
  5. package/browser/index.js +8 -5
  6. package/cjs/ClubDrawer.js +3 -0
  7. package/cjs/DiamondDrawer.js +3 -0
  8. package/cjs/HeartDrawer.js +3 -0
  9. package/cjs/SpadeDrawer.js +3 -0
  10. package/cjs/Utils.js +2 -2
  11. package/cjs/index.js +9 -7
  12. package/esm/ClubDrawer.js +3 -0
  13. package/esm/DiamondDrawer.js +3 -0
  14. package/esm/HeartDrawer.js +3 -0
  15. package/esm/SpadeDrawer.js +3 -0
  16. package/esm/index.js +8 -5
  17. package/package.json +2 -2
  18. package/report.html +1 -1
  19. package/tsparticles.shape.cards.js +52 -200
  20. package/tsparticles.shape.cards.min.js +1 -1
  21. package/tsparticles.shape.cards.min.js.LICENSE.txt +1 -1
  22. package/types/ClubDrawer.d.ts +1 -0
  23. package/types/DiamondDrawer.d.ts +1 -0
  24. package/types/HeartDrawer.d.ts +1 -0
  25. package/types/SpadeDrawer.d.ts +1 -0
  26. package/umd/ClubDrawer.js +3 -0
  27. package/umd/DiamondDrawer.js +3 -0
  28. package/umd/HeartDrawer.js +3 -0
  29. package/umd/SpadeDrawer.js +3 -0
  30. package/umd/Utils.js +2 -2
  31. package/umd/index.js +10 -32
  32. package/348.min.js +0 -2
  33. package/348.min.js.LICENSE.txt +0 -1
  34. package/576.min.js +0 -2
  35. package/576.min.js.LICENSE.txt +0 -1
  36. package/668.min.js +0 -2
  37. package/668.min.js.LICENSE.txt +0 -1
  38. package/765.min.js +0 -2
  39. package/765.min.js.LICENSE.txt +0 -1
  40. package/dist_browser_ClubDrawer_js.js +0 -40
  41. package/dist_browser_DiamondDrawer_js.js +0 -40
  42. package/dist_browser_HeartDrawer_js.js +0 -40
  43. package/dist_browser_SpadeDrawer_js.js +0 -40
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class ClubDrawer {
3
+ constructor() {
4
+ this.validTypes = ["club", "clubs"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.club);
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class DiamondDrawer {
3
+ constructor() {
4
+ this.validTypes = ["diamond", "diamonds"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.diamond);
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class HeartDrawer {
3
+ constructor() {
4
+ this.validTypes = ["heart", "hearts"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.heart);
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class SpadeDrawer {
3
+ constructor() {
4
+ this.validTypes = ["spade", "spades"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.spade);
5
8
  }
package/browser/index.js CHANGED
@@ -1,7 +1,10 @@
1
+ import { ClubDrawer } from "./ClubDrawer.js";
2
+ import { DiamondDrawer } from "./DiamondDrawer.js";
3
+ import { HeartDrawer } from "./HeartDrawer.js";
4
+ import { SpadeDrawer } from "./SpadeDrawer.js";
1
5
  export async function loadCardsShape(engine, refresh = true) {
2
- const { SpadeDrawer } = await import("./SpadeDrawer.js"), { HeartDrawer } = await import("./HeartDrawer.js"), { DiamondDrawer } = await import("./DiamondDrawer.js"), { ClubDrawer } = await import("./ClubDrawer.js");
3
- await engine.addShape(["spade", "spades"], new SpadeDrawer(), refresh);
4
- await engine.addShape(["heart", "hearts"], new HeartDrawer(), refresh);
5
- await engine.addShape(["diamond", "diamonds"], new DiamondDrawer(), refresh);
6
- await engine.addShape(["club", "clubs"], new ClubDrawer(), refresh);
6
+ await engine.addShape(new SpadeDrawer(), refresh);
7
+ await engine.addShape(new HeartDrawer(), refresh);
8
+ await engine.addShape(new DiamondDrawer(), refresh);
9
+ await engine.addShape(new ClubDrawer(), refresh);
7
10
  }
package/cjs/ClubDrawer.js CHANGED
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ClubDrawer = void 0;
4
4
  const Utils_js_1 = require("./Utils.js");
5
5
  class ClubDrawer {
6
+ constructor() {
7
+ this.validTypes = ["club", "clubs"];
8
+ }
6
9
  draw(data) {
7
10
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.club);
8
11
  }
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DiamondDrawer = void 0;
4
4
  const Utils_js_1 = require("./Utils.js");
5
5
  class DiamondDrawer {
6
+ constructor() {
7
+ this.validTypes = ["diamond", "diamonds"];
8
+ }
6
9
  draw(data) {
7
10
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.diamond);
8
11
  }
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.HeartDrawer = void 0;
4
4
  const Utils_js_1 = require("./Utils.js");
5
5
  class HeartDrawer {
6
+ constructor() {
7
+ this.validTypes = ["heart", "hearts"];
8
+ }
6
9
  draw(data) {
7
10
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.heart);
8
11
  }
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SpadeDrawer = void 0;
4
4
  const Utils_js_1 = require("./Utils.js");
5
5
  class SpadeDrawer {
6
+ constructor() {
7
+ this.validTypes = ["spade", "spades"];
8
+ }
6
9
  draw(data) {
7
10
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.spade);
8
11
  }
package/cjs/Utils.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paths = exports.drawPath = void 0;
3
+ exports.paths = void 0;
4
+ exports.drawPath = drawPath;
4
5
  function drawPath(data, path) {
5
6
  if (!path.segments.length || !path.segments[0].values.length) {
6
7
  return;
@@ -15,7 +16,6 @@ function drawPath(data, path) {
15
16
  context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);
16
17
  }
17
18
  }
18
- exports.drawPath = drawPath;
19
19
  const n = 1.0 / 2;
20
20
  exports.paths = {
21
21
  heart: {
package/cjs/index.js CHANGED
@@ -1,11 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.loadCardsShape = void 0;
3
+ exports.loadCardsShape = loadCardsShape;
4
+ const ClubDrawer_js_1 = require("./ClubDrawer.js");
5
+ const DiamondDrawer_js_1 = require("./DiamondDrawer.js");
6
+ const HeartDrawer_js_1 = require("./HeartDrawer.js");
7
+ const SpadeDrawer_js_1 = require("./SpadeDrawer.js");
4
8
  async function loadCardsShape(engine, refresh = true) {
5
- const { SpadeDrawer } = await import("./SpadeDrawer.js"), { HeartDrawer } = await import("./HeartDrawer.js"), { DiamondDrawer } = await import("./DiamondDrawer.js"), { ClubDrawer } = await import("./ClubDrawer.js");
6
- await engine.addShape(["spade", "spades"], new SpadeDrawer(), refresh);
7
- await engine.addShape(["heart", "hearts"], new HeartDrawer(), refresh);
8
- await engine.addShape(["diamond", "diamonds"], new DiamondDrawer(), refresh);
9
- await engine.addShape(["club", "clubs"], new ClubDrawer(), refresh);
9
+ await engine.addShape(new SpadeDrawer_js_1.SpadeDrawer(), refresh);
10
+ await engine.addShape(new HeartDrawer_js_1.HeartDrawer(), refresh);
11
+ await engine.addShape(new DiamondDrawer_js_1.DiamondDrawer(), refresh);
12
+ await engine.addShape(new ClubDrawer_js_1.ClubDrawer(), refresh);
10
13
  }
11
- exports.loadCardsShape = loadCardsShape;
package/esm/ClubDrawer.js CHANGED
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class ClubDrawer {
3
+ constructor() {
4
+ this.validTypes = ["club", "clubs"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.club);
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class DiamondDrawer {
3
+ constructor() {
4
+ this.validTypes = ["diamond", "diamonds"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.diamond);
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class HeartDrawer {
3
+ constructor() {
4
+ this.validTypes = ["heart", "hearts"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.heart);
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { drawPath, paths } from "./Utils.js";
2
2
  export class SpadeDrawer {
3
+ constructor() {
4
+ this.validTypes = ["spade", "spades"];
5
+ }
3
6
  draw(data) {
4
7
  drawPath(data, paths.spade);
5
8
  }
package/esm/index.js CHANGED
@@ -1,7 +1,10 @@
1
+ import { ClubDrawer } from "./ClubDrawer.js";
2
+ import { DiamondDrawer } from "./DiamondDrawer.js";
3
+ import { HeartDrawer } from "./HeartDrawer.js";
4
+ import { SpadeDrawer } from "./SpadeDrawer.js";
1
5
  export async function loadCardsShape(engine, refresh = true) {
2
- const { SpadeDrawer } = await import("./SpadeDrawer.js"), { HeartDrawer } = await import("./HeartDrawer.js"), { DiamondDrawer } = await import("./DiamondDrawer.js"), { ClubDrawer } = await import("./ClubDrawer.js");
3
- await engine.addShape(["spade", "spades"], new SpadeDrawer(), refresh);
4
- await engine.addShape(["heart", "hearts"], new HeartDrawer(), refresh);
5
- await engine.addShape(["diamond", "diamonds"], new DiamondDrawer(), refresh);
6
- await engine.addShape(["club", "clubs"], new ClubDrawer(), refresh);
6
+ await engine.addShape(new SpadeDrawer(), refresh);
7
+ await engine.addShape(new HeartDrawer(), refresh);
8
+ await engine.addShape(new DiamondDrawer(), refresh);
9
+ await engine.addShape(new ClubDrawer(), refresh);
7
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/shape-cards",
3
- "version": "3.3.0",
3
+ "version": "3.5.0",
4
4
  "description": "tsParticles cards shape",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -100,7 +100,7 @@
100
100
  "./package.json": "./package.json"
101
101
  },
102
102
  "dependencies": {
103
- "@tsparticles/engine": "^3.3.0"
103
+ "@tsparticles/engine": "^3.5.0"
104
104
  },
105
105
  "publishConfig": {
106
106
  "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-cards [27 Feb 2024 at 12:19]</title>
6
+ <title>@tsparticles/shape-cards [1 Jul 2024 at 09:21]</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.3.0
7
+ * v3.5.0
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -28,13 +28,63 @@ return /******/ (() => { // webpackBootstrap
28
28
  /******/ "use strict";
29
29
  /******/ var __webpack_modules__ = ({
30
30
 
31
+ /***/ "./dist/browser/ClubDrawer.js":
32
+ /*!************************************!*\
33
+ !*** ./dist/browser/ClubDrawer.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 */ ClubDrawer: () => (/* binding */ ClubDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass ClubDrawer {\n constructor() {\n this.validTypes = [\"club\", \"clubs\"];\n }\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.club);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/ClubDrawer.js?");
38
+
39
+ /***/ }),
40
+
41
+ /***/ "./dist/browser/DiamondDrawer.js":
42
+ /*!***************************************!*\
43
+ !*** ./dist/browser/DiamondDrawer.js ***!
44
+ \***************************************/
45
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
46
+
47
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ DiamondDrawer: () => (/* binding */ DiamondDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass DiamondDrawer {\n constructor() {\n this.validTypes = [\"diamond\", \"diamonds\"];\n }\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.diamond);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/DiamondDrawer.js?");
48
+
49
+ /***/ }),
50
+
51
+ /***/ "./dist/browser/HeartDrawer.js":
52
+ /*!*************************************!*\
53
+ !*** ./dist/browser/HeartDrawer.js ***!
54
+ \*************************************/
55
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
56
+
57
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ HeartDrawer: () => (/* binding */ HeartDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass HeartDrawer {\n constructor() {\n this.validTypes = [\"heart\", \"hearts\"];\n }\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.heart);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/HeartDrawer.js?");
58
+
59
+ /***/ }),
60
+
61
+ /***/ "./dist/browser/SpadeDrawer.js":
62
+ /*!*************************************!*\
63
+ !*** ./dist/browser/SpadeDrawer.js ***!
64
+ \*************************************/
65
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
66
+
67
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ SpadeDrawer: () => (/* binding */ SpadeDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass SpadeDrawer {\n constructor() {\n this.validTypes = [\"spade\", \"spades\"];\n }\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.spade);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/SpadeDrawer.js?");
68
+
69
+ /***/ }),
70
+
71
+ /***/ "./dist/browser/Utils.js":
72
+ /*!*******************************!*\
73
+ !*** ./dist/browser/Utils.js ***!
74
+ \*******************************/
75
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
76
+
77
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawPath: () => (/* binding */ drawPath),\n/* harmony export */ paths: () => (/* binding */ paths)\n/* harmony export */ });\nfunction drawPath(data, path) {\n if (!path.segments.length || !path.segments[0].values.length) {\n return;\n }\n const {\n context,\n radius\n } = data;\n context.moveTo(path.segments[0].values[0].x * radius, path.segments[0].values[0].y * radius);\n for (const segment of path.segments) {\n context.bezierCurveTo(segment.values[1].x * radius, segment.values[1].y * radius, segment.values[2].x * radius, segment.values[2].y * radius, segment.values[3].x * radius, segment.values[3].y * radius);\n }\n for (let i = path.segments.length - 1; i >= 0; i--) {\n const segment = path.segments[i];\n context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);\n }\n}\nconst n = 1.0 / 2;\nconst paths = {\n heart: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n / 2\n }]\n }]\n },\n diamond: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }]\n }, {\n values: [{\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }]\n }]\n },\n club: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n / 2\n }, {\n x: n / 2,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n },\n spade: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n }\n};\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/Utils.js?");
78
+
79
+ /***/ }),
80
+
31
81
  /***/ "./dist/browser/index.js":
32
82
  /*!*******************************!*\
33
83
  !*** ./dist/browser/index.js ***!
34
84
  \*******************************/
35
85
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
36
86
 
37
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadCardsShape: () => (/* binding */ loadCardsShape)\n/* harmony export */ });\nasync function loadCardsShape(engine, refresh = true) {\n const {\n SpadeDrawer\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_SpadeDrawer_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./SpadeDrawer.js */ \"./dist/browser/SpadeDrawer.js\")),\n {\n HeartDrawer\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_HeartDrawer_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./HeartDrawer.js */ \"./dist/browser/HeartDrawer.js\")),\n {\n DiamondDrawer\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_DiamondDrawer_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./DiamondDrawer.js */ \"./dist/browser/DiamondDrawer.js\")),\n {\n ClubDrawer\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_ClubDrawer_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ClubDrawer.js */ \"./dist/browser/ClubDrawer.js\"));\n await engine.addShape([\"spade\", \"spades\"], new SpadeDrawer(), refresh);\n await engine.addShape([\"heart\", \"hearts\"], new HeartDrawer(), refresh);\n await engine.addShape([\"diamond\", \"diamonds\"], new DiamondDrawer(), refresh);\n await engine.addShape([\"club\", \"clubs\"], new ClubDrawer(), refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/index.js?");
87
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadCardsShape: () => (/* binding */ loadCardsShape)\n/* harmony export */ });\n/* harmony import */ var _ClubDrawer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ClubDrawer.js */ \"./dist/browser/ClubDrawer.js\");\n/* harmony import */ var _DiamondDrawer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DiamondDrawer.js */ \"./dist/browser/DiamondDrawer.js\");\n/* harmony import */ var _HeartDrawer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./HeartDrawer.js */ \"./dist/browser/HeartDrawer.js\");\n/* harmony import */ var _SpadeDrawer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SpadeDrawer.js */ \"./dist/browser/SpadeDrawer.js\");\n\n\n\n\nasync function loadCardsShape(engine, refresh = true) {\n await engine.addShape(new _SpadeDrawer_js__WEBPACK_IMPORTED_MODULE_0__.SpadeDrawer(), refresh);\n await engine.addShape(new _HeartDrawer_js__WEBPACK_IMPORTED_MODULE_1__.HeartDrawer(), refresh);\n await engine.addShape(new _DiamondDrawer_js__WEBPACK_IMPORTED_MODULE_2__.DiamondDrawer(), refresh);\n await engine.addShape(new _ClubDrawer_js__WEBPACK_IMPORTED_MODULE_3__.ClubDrawer(), refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/index.js?");
38
88
 
39
89
  /***/ })
40
90
 
@@ -64,9 +114,6 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
64
114
  /******/ return module.exports;
65
115
  /******/ }
66
116
  /******/
67
- /******/ // expose the modules object (__webpack_modules__)
68
- /******/ __webpack_require__.m = __webpack_modules__;
69
- /******/
70
117
  /************************************************************************/
71
118
  /******/ /* webpack/runtime/define property getters */
72
119
  /******/ (() => {
@@ -80,91 +127,11 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
80
127
  /******/ };
81
128
  /******/ })();
82
129
  /******/
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
- /******/
117
130
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
118
131
  /******/ (() => {
119
132
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
120
133
  /******/ })();
121
134
  /******/
122
- /******/ /* webpack/runtime/load script */
123
- /******/ (() => {
124
- /******/ var inProgress = {};
125
- /******/ var dataWebpackPrefix = "@tsparticles/shape-cards:";
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
- /******/
168
135
  /******/ /* webpack/runtime/make namespace object */
169
136
  /******/ (() => {
170
137
  /******/ // define __esModule on exports
@@ -176,121 +143,6 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
176
143
  /******/ };
177
144
  /******/ })();
178
145
  /******/
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 || !/^http(s?):/.test(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.cards": 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_cards"] = this["webpackChunk_tsparticles_shape_cards"] || [];
290
- /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
291
- /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
292
- /******/ })();
293
- /******/
294
146
  /************************************************************************/
295
147
  /******/
296
148
  /******/ // startup
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see tsparticles.shape.cards.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 r=t();for(var a in r)("object"==typeof exports?exports:e)[a]=r[a]}}(this,(()=>(()=>{var e,t,r={},a={};function o(e){var t=a[e];if(void 0!==t)return t.exports;var n=a[e]={exports:{}};return r[e](n,n.exports,o),n.exports}o.m=r,o.d=(e,t)=>{for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=e=>Promise.all(Object.keys(o.f).reduce(((t,r)=>(o.f[r](e,t),t)),[])),o.u=e=>e+".min.js",o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="@tsparticles/shape-cards:",o.l=(r,a,n,i)=>{if(e[r])e[r].push(a);else{var s,d;if(void 0!==n)for(var p=document.getElementsByTagName("script"),c=0;c<p.length;c++){var l=p[c];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+n){s=l;break}}s||(d=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,o.nc&&s.setAttribute("nonce",o.nc),s.setAttribute("data-webpack",t+n),s.src=r),e[r]=[a];var u=(t,a)=>{s.onerror=s.onload=null,clearTimeout(f);var o=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),o&&o.forEach((e=>e(a))),t)return t(a)},f=setTimeout(u.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=u.bind(null,s.onerror),s.onload=u.bind(null,s.onload),d&&document.head.appendChild(s)}},o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var a=r.length-1;a>-1&&(!e||!/^http(s?):/.test(e));)e=r[a--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e})(),(()=>{var e={461:0};o.f.j=(t,r)=>{var a=o.o(e,t)?e[t]:void 0;if(0!==a)if(a)r.push(a[2]);else{var n=new Promise(((r,o)=>a=e[t]=[r,o]));r.push(a[2]=n);var i=o.p+o.u(t),s=new Error;o.l(i,(r=>{if(o.o(e,t)&&(0!==(a=e[t])&&(e[t]=void 0),a)){var n=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+n+": "+i+")",s.name="ChunkLoadError",s.type=n,s.request=i,a[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var a,n,i=r[0],s=r[1],d=r[2],p=0;if(i.some((t=>0!==e[t]))){for(a in s)o.o(s,a)&&(o.m[a]=s[a]);if(d)d(o)}for(t&&t(r);p<i.length;p++)n=i[p],o.o(e,n)&&e[n]&&e[n][0](),e[n]=0},r=this.webpackChunk_tsparticles_shape_cards=this.webpackChunk_tsparticles_shape_cards||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var n={};async function i(e,t=!0){const{SpadeDrawer:r}=await o.e(765).then(o.bind(o,765)),{HeartDrawer:a}=await o.e(348).then(o.bind(o,348)),{DiamondDrawer:n}=await o.e(576).then(o.bind(o,576)),{ClubDrawer:i}=await o.e(668).then(o.bind(o,668));await e.addShape(["spade","spades"],new r,t),await e.addShape(["heart","hearts"],new a,t),await e.addShape(["diamond","diamonds"],new n,t),await e.addShape(["club","clubs"],new i,t)}return o.r(n),o.d(n,{loadCardsShape:()=>i}),n})()));
2
+ !function(e,s){if("object"==typeof exports&&"object"==typeof module)module.exports=s();else if("function"==typeof define&&define.amd)define([],s);else{var y=s();for(var a in y)("object"==typeof exports?exports:e)[a]=y[a]}}(this,(()=>(()=>{var e={d:(s,y)=>{for(var a in y)e.o(y,a)&&!e.o(s,a)&&Object.defineProperty(s,a,{enumerable:!0,get:y[a]})},o:(e,s)=>Object.prototype.hasOwnProperty.call(e,s),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},s={};function y(e,s){if(!s.segments.length||!s.segments[0].values.length)return;const{context:y,radius:a}=e;y.moveTo(s.segments[0].values[0].x*a,s.segments[0].values[0].y*a);for(const e of s.segments)y.bezierCurveTo(e.values[1].x*a,e.values[1].y*a,e.values[2].x*a,e.values[2].y*a,e.values[3].x*a,e.values[3].y*a);for(let e=s.segments.length-1;e>=0;e--){const x=s.segments[e];y.bezierCurveTo(-x.values[2].x*a,x.values[2].y*a,-x.values[1].x*a,x.values[1].y*a,-x.values[0].x*a,x.values[0].y*a)}}e.r(s),e.d(s,{loadCardsShape:()=>u});const a=.5,x={heart:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:a,y:0},{x:a,y:-a/2}]},{values:[{x:a,y:-a/2},{x:a,y:-a/2},{x:a,y:-a},{x:a/2,y:-a}]},{values:[{x:a/2,y:-a},{x:a/2,y:-a},{x:0,y:-a},{x:0,y:-a/2}]}]},diamond:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:.375,y:0},{x:.375,y:0}]},{values:[{x:.375,y:0},{x:.375,y:0},{x:0,y:-a},{x:0,y:-a}]}]},club:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a/2,y:-a},{x:a/2,y:-a/2}]},{values:[{x:a/2,y:-a/2},{x:a/2,y:-a/2},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]},spade:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]}};class t{constructor(){this.validTypes=["club","clubs"]}draw(e){y(e,x.club)}}class l{constructor(){this.validTypes=["diamond","diamonds"]}draw(e){y(e,x.diamond)}}class o{constructor(){this.validTypes=["heart","hearts"]}draw(e){y(e,x.heart)}}class n{constructor(){this.validTypes=["spade","spades"]}draw(e){y(e,x.spade)}}async function u(e,s=!0){await e.addShape(new n,s),await e.addShape(new o,s),await e.addShape(new l,s),await e.addShape(new t,s)}return s})()));
@@ -1 +1 @@
1
- /*! tsParticles Cards Shape v3.3.0 by Matteo Bruni */
1
+ /*! tsParticles Cards Shape v3.5.0 by Matteo Bruni */
@@ -1,4 +1,5 @@
1
1
  import type { IShapeDrawData, IShapeDrawer } from "@tsparticles/engine";
2
2
  export declare class ClubDrawer implements IShapeDrawer {
3
+ readonly validTypes: readonly ["club", "clubs"];
3
4
  draw(data: IShapeDrawData): void;
4
5
  }
@@ -1,4 +1,5 @@
1
1
  import type { IShapeDrawData, IShapeDrawer } from "@tsparticles/engine";
2
2
  export declare class DiamondDrawer implements IShapeDrawer {
3
+ readonly validTypes: readonly ["diamond", "diamonds"];
3
4
  draw(data: IShapeDrawData): void;
4
5
  }
@@ -1,4 +1,5 @@
1
1
  import type { IShapeDrawData, IShapeDrawer } from "@tsparticles/engine";
2
2
  export declare class HeartDrawer implements IShapeDrawer {
3
+ readonly validTypes: readonly ["heart", "hearts"];
3
4
  draw(data: IShapeDrawData): void;
4
5
  }
@@ -1,4 +1,5 @@
1
1
  import type { IShapeDrawData, IShapeDrawer } from "@tsparticles/engine";
2
2
  export declare class SpadeDrawer implements IShapeDrawer {
3
+ readonly validTypes: readonly ["spade", "spades"];
3
4
  draw(data: IShapeDrawData): void;
4
5
  }
package/umd/ClubDrawer.js CHANGED
@@ -12,6 +12,9 @@
12
12
  exports.ClubDrawer = void 0;
13
13
  const Utils_js_1 = require("./Utils.js");
14
14
  class ClubDrawer {
15
+ constructor() {
16
+ this.validTypes = ["club", "clubs"];
17
+ }
15
18
  draw(data) {
16
19
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.club);
17
20
  }
@@ -12,6 +12,9 @@
12
12
  exports.DiamondDrawer = void 0;
13
13
  const Utils_js_1 = require("./Utils.js");
14
14
  class DiamondDrawer {
15
+ constructor() {
16
+ this.validTypes = ["diamond", "diamonds"];
17
+ }
15
18
  draw(data) {
16
19
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.diamond);
17
20
  }
@@ -12,6 +12,9 @@
12
12
  exports.HeartDrawer = void 0;
13
13
  const Utils_js_1 = require("./Utils.js");
14
14
  class HeartDrawer {
15
+ constructor() {
16
+ this.validTypes = ["heart", "hearts"];
17
+ }
15
18
  draw(data) {
16
19
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.heart);
17
20
  }
@@ -12,6 +12,9 @@
12
12
  exports.SpadeDrawer = void 0;
13
13
  const Utils_js_1 = require("./Utils.js");
14
14
  class SpadeDrawer {
15
+ constructor() {
16
+ this.validTypes = ["spade", "spades"];
17
+ }
15
18
  draw(data) {
16
19
  (0, Utils_js_1.drawPath)(data, Utils_js_1.paths.spade);
17
20
  }
package/umd/Utils.js CHANGED
@@ -9,7 +9,8 @@
9
9
  })(function (require, exports) {
10
10
  "use strict";
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.paths = exports.drawPath = void 0;
12
+ exports.paths = void 0;
13
+ exports.drawPath = drawPath;
13
14
  function drawPath(data, path) {
14
15
  if (!path.segments.length || !path.segments[0].values.length) {
15
16
  return;
@@ -24,7 +25,6 @@
24
25
  context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);
25
26
  }
26
27
  }
27
- exports.drawPath = drawPath;
28
28
  const n = 1.0 / 2;
29
29
  exports.paths = {
30
30
  heart: {
package/umd/index.js CHANGED
@@ -1,45 +1,23 @@
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
- };
24
1
  (function (factory) {
25
2
  if (typeof module === "object" && typeof module.exports === "object") {
26
3
  var v = factory(require, exports);
27
4
  if (v !== undefined) module.exports = v;
28
5
  }
29
6
  else if (typeof define === "function" && define.amd) {
30
- define(["require", "exports"], factory);
7
+ define(["require", "exports", "./ClubDrawer.js", "./DiamondDrawer.js", "./HeartDrawer.js", "./SpadeDrawer.js"], factory);
31
8
  }
32
9
  })(function (require, exports) {
33
10
  "use strict";
34
- var __syncRequire = typeof module === "object" && typeof module.exports === "object";
35
11
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.loadCardsShape = void 0;
12
+ exports.loadCardsShape = loadCardsShape;
13
+ const ClubDrawer_js_1 = require("./ClubDrawer.js");
14
+ const DiamondDrawer_js_1 = require("./DiamondDrawer.js");
15
+ const HeartDrawer_js_1 = require("./HeartDrawer.js");
16
+ const SpadeDrawer_js_1 = require("./SpadeDrawer.js");
37
17
  async function loadCardsShape(engine, refresh = true) {
38
- const { SpadeDrawer } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./SpadeDrawer.js"))) : new Promise((resolve_1, reject_1) => { require(["./SpadeDrawer.js"], resolve_1, reject_1); }).then(__importStar)), { HeartDrawer } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./HeartDrawer.js"))) : new Promise((resolve_2, reject_2) => { require(["./HeartDrawer.js"], resolve_2, reject_2); }).then(__importStar)), { DiamondDrawer } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./DiamondDrawer.js"))) : new Promise((resolve_3, reject_3) => { require(["./DiamondDrawer.js"], resolve_3, reject_3); }).then(__importStar)), { ClubDrawer } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ClubDrawer.js"))) : new Promise((resolve_4, reject_4) => { require(["./ClubDrawer.js"], resolve_4, reject_4); }).then(__importStar));
39
- await engine.addShape(["spade", "spades"], new SpadeDrawer(), refresh);
40
- await engine.addShape(["heart", "hearts"], new HeartDrawer(), refresh);
41
- await engine.addShape(["diamond", "diamonds"], new DiamondDrawer(), refresh);
42
- await engine.addShape(["club", "clubs"], new ClubDrawer(), refresh);
18
+ await engine.addShape(new SpadeDrawer_js_1.SpadeDrawer(), refresh);
19
+ await engine.addShape(new HeartDrawer_js_1.HeartDrawer(), refresh);
20
+ await engine.addShape(new DiamondDrawer_js_1.DiamondDrawer(), refresh);
21
+ await engine.addShape(new ClubDrawer_js_1.ClubDrawer(), refresh);
43
22
  }
44
- exports.loadCardsShape = loadCardsShape;
45
23
  });
package/348.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 348.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_shape_cards=this.webpackChunk_tsparticles_shape_cards||[]).push([[348],{348:(e,s,x)=>{x.d(s,{HeartDrawer:()=>a});var y=x(764);class a{draw(e){(0,y.k)(e,y.f.heart)}}},764:(e,s,x)=>{function y(e,s){if(!s.segments.length||!s.segments[0].values.length)return;const{context:x,radius:y}=e;x.moveTo(s.segments[0].values[0].x*y,s.segments[0].values[0].y*y);for(const e of s.segments)x.bezierCurveTo(e.values[1].x*y,e.values[1].y*y,e.values[2].x*y,e.values[2].y*y,e.values[3].x*y,e.values[3].y*y);for(let e=s.segments.length-1;e>=0;e--){const a=s.segments[e];x.bezierCurveTo(-a.values[2].x*y,a.values[2].y*y,-a.values[1].x*y,a.values[1].y*y,-a.values[0].x*y,a.values[0].y*y)}}x.d(s,{f:()=>u,k:()=>y});const a=.5,u={heart:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:a,y:0},{x:a,y:-a/2}]},{values:[{x:a,y:-a/2},{x:a,y:-a/2},{x:a,y:-a},{x:a/2,y:-a}]},{values:[{x:a/2,y:-a},{x:a/2,y:-a},{x:0,y:-a},{x:0,y:-a/2}]}]},diamond:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:.375,y:0},{x:.375,y:0}]},{values:[{x:.375,y:0},{x:.375,y:0},{x:0,y:-a},{x:0,y:-a}]}]},club:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a/2,y:-a},{x:a/2,y:-a/2}]},{values:[{x:a/2,y:-a/2},{x:a/2,y:-a/2},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]},spade:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Cards Shape v3.3.0 by Matteo Bruni */
package/576.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 576.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_shape_cards=this.webpackChunk_tsparticles_shape_cards||[]).push([[576],{576:(e,s,x)=>{x.d(s,{DiamondDrawer:()=>a});var y=x(764);class a{draw(e){(0,y.k)(e,y.f.diamond)}}},764:(e,s,x)=>{function y(e,s){if(!s.segments.length||!s.segments[0].values.length)return;const{context:x,radius:y}=e;x.moveTo(s.segments[0].values[0].x*y,s.segments[0].values[0].y*y);for(const e of s.segments)x.bezierCurveTo(e.values[1].x*y,e.values[1].y*y,e.values[2].x*y,e.values[2].y*y,e.values[3].x*y,e.values[3].y*y);for(let e=s.segments.length-1;e>=0;e--){const a=s.segments[e];x.bezierCurveTo(-a.values[2].x*y,a.values[2].y*y,-a.values[1].x*y,a.values[1].y*y,-a.values[0].x*y,a.values[0].y*y)}}x.d(s,{f:()=>u,k:()=>y});const a=.5,u={heart:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:a,y:0},{x:a,y:-a/2}]},{values:[{x:a,y:-a/2},{x:a,y:-a/2},{x:a,y:-a},{x:a/2,y:-a}]},{values:[{x:a/2,y:-a},{x:a/2,y:-a},{x:0,y:-a},{x:0,y:-a/2}]}]},diamond:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:.375,y:0},{x:.375,y:0}]},{values:[{x:.375,y:0},{x:.375,y:0},{x:0,y:-a},{x:0,y:-a}]}]},club:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a/2,y:-a},{x:a/2,y:-a/2}]},{values:[{x:a/2,y:-a/2},{x:a/2,y:-a/2},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]},spade:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Cards Shape v3.3.0 by Matteo Bruni */
package/668.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 668.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_shape_cards=this.webpackChunk_tsparticles_shape_cards||[]).push([[668],{668:(e,s,x)=>{x.d(s,{ClubDrawer:()=>a});var y=x(764);class a{draw(e){(0,y.k)(e,y.f.club)}}},764:(e,s,x)=>{function y(e,s){if(!s.segments.length||!s.segments[0].values.length)return;const{context:x,radius:y}=e;x.moveTo(s.segments[0].values[0].x*y,s.segments[0].values[0].y*y);for(const e of s.segments)x.bezierCurveTo(e.values[1].x*y,e.values[1].y*y,e.values[2].x*y,e.values[2].y*y,e.values[3].x*y,e.values[3].y*y);for(let e=s.segments.length-1;e>=0;e--){const a=s.segments[e];x.bezierCurveTo(-a.values[2].x*y,a.values[2].y*y,-a.values[1].x*y,a.values[1].y*y,-a.values[0].x*y,a.values[0].y*y)}}x.d(s,{f:()=>u,k:()=>y});const a=.5,u={heart:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:a,y:0},{x:a,y:-a/2}]},{values:[{x:a,y:-a/2},{x:a,y:-a/2},{x:a,y:-a},{x:a/2,y:-a}]},{values:[{x:a/2,y:-a},{x:a/2,y:-a},{x:0,y:-a},{x:0,y:-a/2}]}]},diamond:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:.375,y:0},{x:.375,y:0}]},{values:[{x:.375,y:0},{x:.375,y:0},{x:0,y:-a},{x:0,y:-a}]}]},club:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a/2,y:-a},{x:a/2,y:-a/2}]},{values:[{x:a/2,y:-a/2},{x:a/2,y:-a/2},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]},spade:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Cards Shape v3.3.0 by Matteo Bruni */
package/765.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 765.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_shape_cards=this.webpackChunk_tsparticles_shape_cards||[]).push([[765],{765:(e,s,x)=>{x.d(s,{SpadeDrawer:()=>a});var y=x(764);class a{draw(e){(0,y.k)(e,y.f.spade)}}},764:(e,s,x)=>{function y(e,s){if(!s.segments.length||!s.segments[0].values.length)return;const{context:x,radius:y}=e;x.moveTo(s.segments[0].values[0].x*y,s.segments[0].values[0].y*y);for(const e of s.segments)x.bezierCurveTo(e.values[1].x*y,e.values[1].y*y,e.values[2].x*y,e.values[2].y*y,e.values[3].x*y,e.values[3].y*y);for(let e=s.segments.length-1;e>=0;e--){const a=s.segments[e];x.bezierCurveTo(-a.values[2].x*y,a.values[2].y*y,-a.values[1].x*y,a.values[1].y*y,-a.values[0].x*y,a.values[0].y*y)}}x.d(s,{f:()=>u,k:()=>y});const a=.5,u={heart:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:a,y:0},{x:a,y:-a/2}]},{values:[{x:a,y:-a/2},{x:a,y:-a/2},{x:a,y:-a},{x:a/2,y:-a}]},{values:[{x:a/2,y:-a},{x:a/2,y:-a},{x:0,y:-a},{x:0,y:-a/2}]}]},diamond:{segments:[{values:[{x:0,y:a},{x:0,y:a},{x:.375,y:0},{x:.375,y:0}]},{values:[{x:.375,y:0},{x:.375,y:0},{x:0,y:-a},{x:0,y:-a}]}]},club:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a/2,y:-a},{x:a/2,y:-a/2}]},{values:[{x:a/2,y:-a/2},{x:a/2,y:-a/2},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]},spade:{segments:[{values:[{x:0,y:-a},{x:0,y:-a},{x:a,y:-a/2},{x:a,y:0}]},{values:[{x:a,y:0},{x:a,y:0},{x:a,y:a/2},{x:a/2,y:a/2}]},{values:[{x:a/2,y:a/2},{x:a/2,y:a/2},{x:a/8,y:a/2},{x:a/8,y:a/8}]},{values:[{x:a/8,y:a/8},{x:a/8,y:a/2},{x:a/2,y:a},{x:a/2,y:a}]},{values:[{x:a/2,y:a},{x:a/2,y:a},{x:0,y:a},{x:0,y:a}]}]}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Cards Shape v3.3.0 by Matteo Bruni */
@@ -1,40 +0,0 @@
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.3.0
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_cards"] = this["webpackChunk_tsparticles_shape_cards"] || []).push([["dist_browser_ClubDrawer_js"],{
19
-
20
- /***/ "./dist/browser/ClubDrawer.js":
21
- /*!************************************!*\
22
- !*** ./dist/browser/ClubDrawer.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 */ ClubDrawer: () => (/* binding */ ClubDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass ClubDrawer {\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.club);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/ClubDrawer.js?");
27
-
28
- /***/ }),
29
-
30
- /***/ "./dist/browser/Utils.js":
31
- /*!*******************************!*\
32
- !*** ./dist/browser/Utils.js ***!
33
- \*******************************/
34
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
35
-
36
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawPath: () => (/* binding */ drawPath),\n/* harmony export */ paths: () => (/* binding */ paths)\n/* harmony export */ });\nfunction drawPath(data, path) {\n if (!path.segments.length || !path.segments[0].values.length) {\n return;\n }\n const {\n context,\n radius\n } = data;\n context.moveTo(path.segments[0].values[0].x * radius, path.segments[0].values[0].y * radius);\n for (const segment of path.segments) {\n context.bezierCurveTo(segment.values[1].x * radius, segment.values[1].y * radius, segment.values[2].x * radius, segment.values[2].y * radius, segment.values[3].x * radius, segment.values[3].y * radius);\n }\n for (let i = path.segments.length - 1; i >= 0; i--) {\n const segment = path.segments[i];\n context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);\n }\n}\nconst n = 1.0 / 2;\nconst paths = {\n heart: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n / 2\n }]\n }]\n },\n diamond: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }]\n }, {\n values: [{\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }]\n }]\n },\n club: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n / 2\n }, {\n x: n / 2,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n },\n spade: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n }\n};\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/Utils.js?");
37
-
38
- /***/ })
39
-
40
- }]);
@@ -1,40 +0,0 @@
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.3.0
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_cards"] = this["webpackChunk_tsparticles_shape_cards"] || []).push([["dist_browser_DiamondDrawer_js"],{
19
-
20
- /***/ "./dist/browser/DiamondDrawer.js":
21
- /*!***************************************!*\
22
- !*** ./dist/browser/DiamondDrawer.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 */ DiamondDrawer: () => (/* binding */ DiamondDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass DiamondDrawer {\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.diamond);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/DiamondDrawer.js?");
27
-
28
- /***/ }),
29
-
30
- /***/ "./dist/browser/Utils.js":
31
- /*!*******************************!*\
32
- !*** ./dist/browser/Utils.js ***!
33
- \*******************************/
34
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
35
-
36
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawPath: () => (/* binding */ drawPath),\n/* harmony export */ paths: () => (/* binding */ paths)\n/* harmony export */ });\nfunction drawPath(data, path) {\n if (!path.segments.length || !path.segments[0].values.length) {\n return;\n }\n const {\n context,\n radius\n } = data;\n context.moveTo(path.segments[0].values[0].x * radius, path.segments[0].values[0].y * radius);\n for (const segment of path.segments) {\n context.bezierCurveTo(segment.values[1].x * radius, segment.values[1].y * radius, segment.values[2].x * radius, segment.values[2].y * radius, segment.values[3].x * radius, segment.values[3].y * radius);\n }\n for (let i = path.segments.length - 1; i >= 0; i--) {\n const segment = path.segments[i];\n context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);\n }\n}\nconst n = 1.0 / 2;\nconst paths = {\n heart: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n / 2\n }]\n }]\n },\n diamond: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }]\n }, {\n values: [{\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }]\n }]\n },\n club: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n / 2\n }, {\n x: n / 2,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n },\n spade: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n }\n};\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/Utils.js?");
37
-
38
- /***/ })
39
-
40
- }]);
@@ -1,40 +0,0 @@
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.3.0
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_cards"] = this["webpackChunk_tsparticles_shape_cards"] || []).push([["dist_browser_HeartDrawer_js"],{
19
-
20
- /***/ "./dist/browser/HeartDrawer.js":
21
- /*!*************************************!*\
22
- !*** ./dist/browser/HeartDrawer.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 */ HeartDrawer: () => (/* binding */ HeartDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass HeartDrawer {\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.heart);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/HeartDrawer.js?");
27
-
28
- /***/ }),
29
-
30
- /***/ "./dist/browser/Utils.js":
31
- /*!*******************************!*\
32
- !*** ./dist/browser/Utils.js ***!
33
- \*******************************/
34
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
35
-
36
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawPath: () => (/* binding */ drawPath),\n/* harmony export */ paths: () => (/* binding */ paths)\n/* harmony export */ });\nfunction drawPath(data, path) {\n if (!path.segments.length || !path.segments[0].values.length) {\n return;\n }\n const {\n context,\n radius\n } = data;\n context.moveTo(path.segments[0].values[0].x * radius, path.segments[0].values[0].y * radius);\n for (const segment of path.segments) {\n context.bezierCurveTo(segment.values[1].x * radius, segment.values[1].y * radius, segment.values[2].x * radius, segment.values[2].y * radius, segment.values[3].x * radius, segment.values[3].y * radius);\n }\n for (let i = path.segments.length - 1; i >= 0; i--) {\n const segment = path.segments[i];\n context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);\n }\n}\nconst n = 1.0 / 2;\nconst paths = {\n heart: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n / 2\n }]\n }]\n },\n diamond: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }]\n }, {\n values: [{\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }]\n }]\n },\n club: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n / 2\n }, {\n x: n / 2,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n },\n spade: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n }\n};\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/Utils.js?");
37
-
38
- /***/ })
39
-
40
- }]);
@@ -1,40 +0,0 @@
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.3.0
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_cards"] = this["webpackChunk_tsparticles_shape_cards"] || []).push([["dist_browser_SpadeDrawer_js"],{
19
-
20
- /***/ "./dist/browser/SpadeDrawer.js":
21
- /*!*************************************!*\
22
- !*** ./dist/browser/SpadeDrawer.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 */ SpadeDrawer: () => (/* binding */ SpadeDrawer)\n/* harmony export */ });\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils.js */ \"./dist/browser/Utils.js\");\n\nclass SpadeDrawer {\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_0__.drawPath)(data, _Utils_js__WEBPACK_IMPORTED_MODULE_0__.paths.spade);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/SpadeDrawer.js?");
27
-
28
- /***/ }),
29
-
30
- /***/ "./dist/browser/Utils.js":
31
- /*!*******************************!*\
32
- !*** ./dist/browser/Utils.js ***!
33
- \*******************************/
34
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
35
-
36
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawPath: () => (/* binding */ drawPath),\n/* harmony export */ paths: () => (/* binding */ paths)\n/* harmony export */ });\nfunction drawPath(data, path) {\n if (!path.segments.length || !path.segments[0].values.length) {\n return;\n }\n const {\n context,\n radius\n } = data;\n context.moveTo(path.segments[0].values[0].x * radius, path.segments[0].values[0].y * radius);\n for (const segment of path.segments) {\n context.bezierCurveTo(segment.values[1].x * radius, segment.values[1].y * radius, segment.values[2].x * radius, segment.values[2].y * radius, segment.values[3].x * radius, segment.values[3].y * radius);\n }\n for (let i = path.segments.length - 1; i >= 0; i--) {\n const segment = path.segments[i];\n context.bezierCurveTo(-segment.values[2].x * radius, segment.values[2].y * radius, -segment.values[1].x * radius, segment.values[1].y * radius, -segment.values[0].x * radius, segment.values[0].y * radius);\n }\n}\nconst n = 1.0 / 2;\nconst paths = {\n heart: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n / 2\n }]\n }]\n },\n diamond: {\n segments: [{\n values: [{\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }]\n }, {\n values: [{\n x: 3 * n / 4,\n y: 0\n }, {\n x: 3 * n / 4,\n y: 0\n }, {\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }]\n }]\n },\n club: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n / 2,\n y: -n\n }, {\n x: n / 2,\n y: -n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: -n / 2\n }, {\n x: n / 2,\n y: -n / 2\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n },\n spade: {\n segments: [{\n values: [{\n x: 0,\n y: -n\n }, {\n x: 0,\n y: -n\n }, {\n x: n,\n y: -n / 2\n }, {\n x: n,\n y: 0\n }]\n }, {\n values: [{\n x: n,\n y: 0\n }, {\n x: n,\n y: 0\n }, {\n x: n,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }]\n }, {\n values: [{\n x: n / 2,\n y: n / 2\n }, {\n x: n / 2,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 8,\n y: n / 8\n }]\n }, {\n values: [{\n x: n / 8,\n y: n / 8\n }, {\n x: n / 8,\n y: n / 2\n }, {\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }]\n }, {\n values: [{\n x: n / 2,\n y: n\n }, {\n x: n / 2,\n y: n\n }, {\n x: 0,\n y: n\n }, {\n x: 0,\n y: n\n }]\n }]\n }\n};\n\n//# sourceURL=webpack://@tsparticles/shape-cards/./dist/browser/Utils.js?");
37
-
38
- /***/ })
39
-
40
- }]);