@tsparticles/shape-star 3.0.2 → 3.1.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.
@@ -1,21 +1,22 @@
1
1
  import { getRangeValue, } from "@tsparticles/engine";
2
+ const defaultInset = 2, origin = { x: 0, y: 0 }, defaultSides = 5;
2
3
  export class StarDrawer {
3
4
  draw(data) {
4
- const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? 2;
5
- context.moveTo(0, 0 - radius);
5
+ const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? defaultInset;
6
+ context.moveTo(origin.x, origin.y - radius);
6
7
  for (let i = 0; i < sides; i++) {
7
8
  context.rotate(Math.PI / sides);
8
- context.lineTo(0, 0 - radius * inset);
9
+ context.lineTo(origin.x, origin.y - radius * inset);
9
10
  context.rotate(Math.PI / sides);
10
- context.lineTo(0, 0 - radius);
11
+ context.lineTo(origin.x, origin.y - radius);
11
12
  }
12
13
  }
13
14
  getSidesCount(particle) {
14
15
  const star = particle.shapeData;
15
- return Math.round(getRangeValue(star?.sides ?? 5));
16
+ return Math.round(getRangeValue(star?.sides ?? defaultSides));
16
17
  }
17
18
  particleInit(container, particle) {
18
19
  const star = particle.shapeData;
19
- particle.starInset = getRangeValue(star?.inset ?? 2);
20
+ particle.starInset = getRangeValue(star?.inset ?? defaultInset);
20
21
  }
21
22
  }
package/cjs/StarDrawer.js CHANGED
@@ -2,24 +2,25 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StarDrawer = void 0;
4
4
  const engine_1 = require("@tsparticles/engine");
5
+ const defaultInset = 2, origin = { x: 0, y: 0 }, defaultSides = 5;
5
6
  class StarDrawer {
6
7
  draw(data) {
7
- const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? 2;
8
- context.moveTo(0, 0 - radius);
8
+ const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? defaultInset;
9
+ context.moveTo(origin.x, origin.y - radius);
9
10
  for (let i = 0; i < sides; i++) {
10
11
  context.rotate(Math.PI / sides);
11
- context.lineTo(0, 0 - radius * inset);
12
+ context.lineTo(origin.x, origin.y - radius * inset);
12
13
  context.rotate(Math.PI / sides);
13
- context.lineTo(0, 0 - radius);
14
+ context.lineTo(origin.x, origin.y - radius);
14
15
  }
15
16
  }
16
17
  getSidesCount(particle) {
17
18
  const star = particle.shapeData;
18
- return Math.round((0, engine_1.getRangeValue)(star?.sides ?? 5));
19
+ return Math.round((0, engine_1.getRangeValue)(star?.sides ?? defaultSides));
19
20
  }
20
21
  particleInit(container, particle) {
21
22
  const star = particle.shapeData;
22
- particle.starInset = (0, engine_1.getRangeValue)(star?.inset ?? 2);
23
+ particle.starInset = (0, engine_1.getRangeValue)(star?.inset ?? defaultInset);
23
24
  }
24
25
  }
25
26
  exports.StarDrawer = StarDrawer;
package/esm/StarDrawer.js CHANGED
@@ -1,21 +1,22 @@
1
1
  import { getRangeValue, } from "@tsparticles/engine";
2
+ const defaultInset = 2, origin = { x: 0, y: 0 }, defaultSides = 5;
2
3
  export class StarDrawer {
3
4
  draw(data) {
4
- const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? 2;
5
- context.moveTo(0, 0 - radius);
5
+ const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? defaultInset;
6
+ context.moveTo(origin.x, origin.y - radius);
6
7
  for (let i = 0; i < sides; i++) {
7
8
  context.rotate(Math.PI / sides);
8
- context.lineTo(0, 0 - radius * inset);
9
+ context.lineTo(origin.x, origin.y - radius * inset);
9
10
  context.rotate(Math.PI / sides);
10
- context.lineTo(0, 0 - radius);
11
+ context.lineTo(origin.x, origin.y - radius);
11
12
  }
12
13
  }
13
14
  getSidesCount(particle) {
14
15
  const star = particle.shapeData;
15
- return Math.round(getRangeValue(star?.sides ?? 5));
16
+ return Math.round(getRangeValue(star?.sides ?? defaultSides));
16
17
  }
17
18
  particleInit(container, particle) {
18
19
  const star = particle.shapeData;
19
- particle.starInset = getRangeValue(star?.inset ?? 2);
20
+ particle.starInset = getRangeValue(star?.inset ?? defaultInset);
20
21
  }
21
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/shape-star",
3
- "version": "3.0.2",
3
+ "version": "3.1.0",
4
4
  "description": "tsParticles star 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.0.2"
62
+ "@tsparticles/engine": "^3.1.0"
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-star [6 Dec 2023 at 17:45]</title>
6
+ <title>@tsparticles/shape-star [13 Jan 2024 at 23:07]</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,7 +31,7 @@
31
31
  <body>
32
32
  <div id="app"></div>
33
33
  <script>
34
- window.chartData = [{"label":"tsparticles.shape.star.js","isAsset":true,"statSize":958,"parsedSize":4777,"gzipSize":1613,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":916,"groups":[{"id":965,"label":"index.js + 1 modules (concatenated)","path":"./dist/browser/index.js + 1 modules (concatenated)","statSize":916,"parsedSize":4777,"gzipSize":1613,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/index.js + 1 modules (concatenated)/dist/browser","statSize":916,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/index.js + 1 modules (concatenated)/dist/browser/index.js","statSize":169,"parsedSize":881,"gzipSize":297,"inaccurateSizes":true},{"id":null,"label":"StarDrawer.js","path":"./dist/browser/index.js + 1 modules (concatenated)/dist/browser/StarDrawer.js","statSize":747,"parsedSize":3895,"gzipSize":1315,"inaccurateSizes":true}],"parsedSize":4777,"gzipSize":1613,"inaccurateSizes":true}]}],"parsedSize":4777,"gzipSize":1613},{"label":"engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles","path":"./engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles","statSize":42,"groups":[{"id":533,"label":"engine\",\"root\":\"window\"}","path":"./engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles/engine\",\"root\":\"window\"}","statSize":42}],"parsedSize":0,"gzipSize":0}],"isInitialByEntrypoint":{"tsparticles.shape.star":true}}];
34
+ window.chartData = [{"label":"tsparticles.shape.star.js","isAsset":true,"statSize":1114,"parsedSize":4933,"gzipSize":1661,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":1072,"groups":[{"id":841,"label":"index.js + 1 modules (concatenated)","path":"./dist/browser/index.js + 1 modules (concatenated)","statSize":1072,"parsedSize":4933,"gzipSize":1661,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/index.js + 1 modules (concatenated)/dist/browser","statSize":1072,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/index.js + 1 modules (concatenated)/dist/browser/index.js","statSize":169,"parsedSize":777,"gzipSize":261,"inaccurateSizes":true},{"id":null,"label":"StarDrawer.js","path":"./dist/browser/index.js + 1 modules (concatenated)/dist/browser/StarDrawer.js","statSize":903,"parsedSize":4155,"gzipSize":1399,"inaccurateSizes":true}],"parsedSize":4933,"gzipSize":1661,"inaccurateSizes":true}]}],"parsedSize":4933,"gzipSize":1661},{"label":"engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles","path":"./engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles","statSize":42,"groups":[{"id":533,"label":"engine\",\"root\":\"window\"}","path":"./engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles/engine\",\"root\":\"window\"}","statSize":42}],"parsedSize":0,"gzipSize":0}],"isInitialByEntrypoint":{"tsparticles.shape.star":true}}];
35
35
  window.entrypoints = ["tsparticles.shape.star","tsparticles.shape.star.min"];
36
36
  window.defaultSizes = "parsed";
37
37
  </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.0.2
7
+ * v3.1.0
8
8
  */
9
9
  (function webpackUniversalModuleDefinition(root, factory) {
10
10
  if(typeof exports === 'object' && typeof module === 'object')
@@ -98,6 +98,12 @@ __webpack_require__.d(__webpack_exports__, {
98
98
  var engine_root_window_ = __webpack_require__(533);
99
99
  ;// CONCATENATED MODULE: ./dist/browser/StarDrawer.js
100
100
 
101
+ const defaultInset = 2,
102
+ origin = {
103
+ x: 0,
104
+ y: 0
105
+ },
106
+ defaultSides = 5;
101
107
  class StarDrawer {
102
108
  draw(data) {
103
109
  const {
@@ -106,22 +112,22 @@ class StarDrawer {
106
112
  radius
107
113
  } = data,
108
114
  sides = particle.sides,
109
- inset = particle.starInset ?? 2;
110
- context.moveTo(0, 0 - radius);
115
+ inset = particle.starInset ?? defaultInset;
116
+ context.moveTo(origin.x, origin.y - radius);
111
117
  for (let i = 0; i < sides; i++) {
112
118
  context.rotate(Math.PI / sides);
113
- context.lineTo(0, 0 - radius * inset);
119
+ context.lineTo(origin.x, origin.y - radius * inset);
114
120
  context.rotate(Math.PI / sides);
115
- context.lineTo(0, 0 - radius);
121
+ context.lineTo(origin.x, origin.y - radius);
116
122
  }
117
123
  }
118
124
  getSidesCount(particle) {
119
125
  const star = particle.shapeData;
120
- return Math.round((0,engine_root_window_.getRangeValue)(star?.sides ?? 5));
126
+ return Math.round((0,engine_root_window_.getRangeValue)(star?.sides ?? defaultSides));
121
127
  }
122
128
  particleInit(container, particle) {
123
129
  const star = particle.shapeData;
124
- particle.starInset = (0,engine_root_window_.getRangeValue)(star?.inset ?? 2);
130
+ particle.starInset = (0,engine_root_window_.getRangeValue)(star?.inset ?? defaultInset);
125
131
  }
126
132
  }
127
133
  ;// CONCATENATED MODULE: ./dist/browser/index.js
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see tsparticles.shape.star.min.js.LICENSE.txt */
2
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e=>(()=>{"use strict";var t={533:t=>{t.exports=e}},r={};function o(e){var a=r[e];if(void 0!==a)return a.exports;var n=r[e]={exports:{}};return t[e](n,n.exports,o),n.exports}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.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};return(()=>{o.r(a),o.d(a,{loadStarShape:()=>r});var e=o(533);class t{draw(e){const{context:t,particle:r,radius:o}=e,a=r.sides,n=r.starInset??2;t.moveTo(0,0-o);for(let e=0;e<a;e++)t.rotate(Math.PI/a),t.lineTo(0,0-o*n),t.rotate(Math.PI/a),t.lineTo(0,0-o)}getSidesCount(t){const r=t.shapeData;return Math.round((0,e.getRangeValue)(r?.sides??5))}particleInit(t,r){const o=r.shapeData;r.starInset=(0,e.getRangeValue)(o?.inset??2)}}async function r(e,r=!0){await e.addShape("star",new t,r)}})(),a})()));
2
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e=>(()=>{"use strict";var t={533:t=>{t.exports=e}},r={};function o(e){var a=r[e];if(void 0!==a)return a.exports;var n=r[e]={exports:{}};return t[e](n,n.exports,o),n.exports}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.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};return(()=>{o.r(a),o.d(a,{loadStarShape:()=>s});var e=o(533);const t=0,r=0;class n{draw(e){const{context:o,particle:a,radius:n}=e,s=a.sides,i=a.starInset??2;o.moveTo(t,r-n);for(let e=0;e<s;e++)o.rotate(Math.PI/s),o.lineTo(t,r-n*i),o.rotate(Math.PI/s),o.lineTo(t,r-n)}getSidesCount(t){const r=t.shapeData;return Math.round((0,e.getRangeValue)(r?.sides??5))}particleInit(t,r){const o=r.shapeData;r.starInset=(0,e.getRangeValue)(o?.inset??2)}}async function s(e,t=!0){await e.addShape("star",new n,t)}})(),a})()));
@@ -1 +1 @@
1
- /*! tsParticles Star Shape v3.0.2 by Matteo Bruni */
1
+ /*! tsParticles Star Shape v3.1.0 by Matteo Bruni */
package/umd/StarDrawer.js CHANGED
@@ -11,24 +11,25 @@
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.StarDrawer = void 0;
13
13
  const engine_1 = require("@tsparticles/engine");
14
+ const defaultInset = 2, origin = { x: 0, y: 0 }, defaultSides = 5;
14
15
  class StarDrawer {
15
16
  draw(data) {
16
- const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? 2;
17
- context.moveTo(0, 0 - radius);
17
+ const { context, particle, radius } = data, sides = particle.sides, inset = particle.starInset ?? defaultInset;
18
+ context.moveTo(origin.x, origin.y - radius);
18
19
  for (let i = 0; i < sides; i++) {
19
20
  context.rotate(Math.PI / sides);
20
- context.lineTo(0, 0 - radius * inset);
21
+ context.lineTo(origin.x, origin.y - radius * inset);
21
22
  context.rotate(Math.PI / sides);
22
- context.lineTo(0, 0 - radius);
23
+ context.lineTo(origin.x, origin.y - radius);
23
24
  }
24
25
  }
25
26
  getSidesCount(particle) {
26
27
  const star = particle.shapeData;
27
- return Math.round((0, engine_1.getRangeValue)(star?.sides ?? 5));
28
+ return Math.round((0, engine_1.getRangeValue)(star?.sides ?? defaultSides));
28
29
  }
29
30
  particleInit(container, particle) {
30
31
  const star = particle.shapeData;
31
- particle.starInset = (0, engine_1.getRangeValue)(star?.inset ?? 2);
32
+ particle.starInset = (0, engine_1.getRangeValue)(star?.inset ?? defaultInset);
32
33
  }
33
34
  }
34
35
  exports.StarDrawer = StarDrawer;