@mui/x-charts-vendor 8.14.0 → 8.15.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/README.md +2 -7
  2. package/package.json +3 -6
  3. package/d3-delaunay.d.ts +0 -5
  4. package/d3-delaunay.js +0 -7
  5. package/delaunator.d.ts +0 -5
  6. package/delaunator.js +0 -7
  7. package/es/d3-delaunay.mjs +0 -6
  8. package/es/delaunator.mjs +0 -6
  9. package/es/robust-predicates.mjs +0 -6
  10. package/lib/d3-delaunay.js +0 -6
  11. package/lib/delaunator.js +0 -6
  12. package/lib/robust-predicates.js +0 -6
  13. package/lib-vendor/d3-delaunay/LICENSE +0 -14
  14. package/lib-vendor/d3-delaunay/dist/d3-delaunay.js +0 -1398
  15. package/lib-vendor/d3-delaunay/dist/d3-delaunay.min.js +0 -853
  16. package/lib-vendor/d3-delaunay/src/delaunay.js +0 -282
  17. package/lib-vendor/d3-delaunay/src/index.js +0 -20
  18. package/lib-vendor/d3-delaunay/src/path.js +0 -43
  19. package/lib-vendor/d3-delaunay/src/polygon.js +0 -24
  20. package/lib-vendor/d3-delaunay/src/voronoi.js +0 -390
  21. package/lib-vendor/delaunator/LICENSE +0 -15
  22. package/lib-vendor/delaunator/delaunator.js +0 -688
  23. package/lib-vendor/delaunator/delaunator.min.js +0 -316
  24. package/lib-vendor/delaunator/index.js +0 -440
  25. package/lib-vendor/robust-predicates/LICENSE +0 -24
  26. package/lib-vendor/robust-predicates/esm/incircle.js +0 -667
  27. package/lib-vendor/robust-predicates/esm/insphere.js +0 -693
  28. package/lib-vendor/robust-predicates/esm/orient2d.js +0 -174
  29. package/lib-vendor/robust-predicates/esm/orient3d.js +0 -422
  30. package/lib-vendor/robust-predicates/esm/util.js +0 -147
  31. package/lib-vendor/robust-predicates/index.js +0 -57
  32. package/lib-vendor/robust-predicates/umd/incircle.js +0 -798
  33. package/lib-vendor/robust-predicates/umd/incircle.min.js +0 -170
  34. package/lib-vendor/robust-predicates/umd/insphere.js +0 -828
  35. package/lib-vendor/robust-predicates/umd/insphere.min.js +0 -223
  36. package/lib-vendor/robust-predicates/umd/orient2d.js +0 -260
  37. package/lib-vendor/robust-predicates/umd/orient2d.min.js +0 -69
  38. package/lib-vendor/robust-predicates/umd/orient3d.js +0 -550
  39. package/lib-vendor/robust-predicates/umd/orient3d.min.js +0 -133
  40. package/lib-vendor/robust-predicates/umd/predicates.js +0 -2073
  41. package/lib-vendor/robust-predicates/umd/predicates.min.js +0 -468
  42. package/robust-predicates.d.ts +0 -5
  43. package/robust-predicates.js +0 -7
@@ -1,147 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.epsilon = void 0;
7
- exports.estimate = estimate;
8
- exports.negate = negate;
9
- exports.resulterrbound = void 0;
10
- exports.scale = scale;
11
- exports.splitter = void 0;
12
- exports.sum = sum;
13
- exports.sum_three = sum_three;
14
- exports.vec = vec;
15
- const epsilon = exports.epsilon = 1.1102230246251565e-16;
16
- const splitter = exports.splitter = 134217729;
17
- const resulterrbound = exports.resulterrbound = (3 + 8 * epsilon) * epsilon;
18
-
19
- // fast_expansion_sum_zeroelim routine from oritinal code
20
- function sum(elen, e, flen, f, h) {
21
- let Q, Qnew, hh, bvirt;
22
- let enow = e[0];
23
- let fnow = f[0];
24
- let eindex = 0;
25
- let findex = 0;
26
- if (fnow > enow === fnow > -enow) {
27
- Q = enow;
28
- enow = e[++eindex];
29
- } else {
30
- Q = fnow;
31
- fnow = f[++findex];
32
- }
33
- let hindex = 0;
34
- if (eindex < elen && findex < flen) {
35
- if (fnow > enow === fnow > -enow) {
36
- Qnew = enow + Q;
37
- hh = Q - (Qnew - enow);
38
- enow = e[++eindex];
39
- } else {
40
- Qnew = fnow + Q;
41
- hh = Q - (Qnew - fnow);
42
- fnow = f[++findex];
43
- }
44
- Q = Qnew;
45
- if (hh !== 0) {
46
- h[hindex++] = hh;
47
- }
48
- while (eindex < elen && findex < flen) {
49
- if (fnow > enow === fnow > -enow) {
50
- Qnew = Q + enow;
51
- bvirt = Qnew - Q;
52
- hh = Q - (Qnew - bvirt) + (enow - bvirt);
53
- enow = e[++eindex];
54
- } else {
55
- Qnew = Q + fnow;
56
- bvirt = Qnew - Q;
57
- hh = Q - (Qnew - bvirt) + (fnow - bvirt);
58
- fnow = f[++findex];
59
- }
60
- Q = Qnew;
61
- if (hh !== 0) {
62
- h[hindex++] = hh;
63
- }
64
- }
65
- }
66
- while (eindex < elen) {
67
- Qnew = Q + enow;
68
- bvirt = Qnew - Q;
69
- hh = Q - (Qnew - bvirt) + (enow - bvirt);
70
- enow = e[++eindex];
71
- Q = Qnew;
72
- if (hh !== 0) {
73
- h[hindex++] = hh;
74
- }
75
- }
76
- while (findex < flen) {
77
- Qnew = Q + fnow;
78
- bvirt = Qnew - Q;
79
- hh = Q - (Qnew - bvirt) + (fnow - bvirt);
80
- fnow = f[++findex];
81
- Q = Qnew;
82
- if (hh !== 0) {
83
- h[hindex++] = hh;
84
- }
85
- }
86
- if (Q !== 0 || hindex === 0) {
87
- h[hindex++] = Q;
88
- }
89
- return hindex;
90
- }
91
- function sum_three(alen, a, blen, b, clen, c, tmp, out) {
92
- return sum(sum(alen, a, blen, b, tmp), tmp, clen, c, out);
93
- }
94
-
95
- // scale_expansion_zeroelim routine from oritinal code
96
- function scale(elen, e, b, h) {
97
- let Q, sum, hh, product1, product0;
98
- let bvirt, c, ahi, alo, bhi, blo;
99
- c = splitter * b;
100
- bhi = c - (c - b);
101
- blo = b - bhi;
102
- let enow = e[0];
103
- Q = enow * b;
104
- c = splitter * enow;
105
- ahi = c - (c - enow);
106
- alo = enow - ahi;
107
- hh = alo * blo - (Q - ahi * bhi - alo * bhi - ahi * blo);
108
- let hindex = 0;
109
- if (hh !== 0) {
110
- h[hindex++] = hh;
111
- }
112
- for (let i = 1; i < elen; i++) {
113
- enow = e[i];
114
- product1 = enow * b;
115
- c = splitter * enow;
116
- ahi = c - (c - enow);
117
- alo = enow - ahi;
118
- product0 = alo * blo - (product1 - ahi * bhi - alo * bhi - ahi * blo);
119
- sum = Q + product0;
120
- bvirt = sum - Q;
121
- hh = Q - (sum - bvirt) + (product0 - bvirt);
122
- if (hh !== 0) {
123
- h[hindex++] = hh;
124
- }
125
- Q = product1 + sum;
126
- hh = sum - (Q - product1);
127
- if (hh !== 0) {
128
- h[hindex++] = hh;
129
- }
130
- }
131
- if (Q !== 0 || hindex === 0) {
132
- h[hindex++] = Q;
133
- }
134
- return hindex;
135
- }
136
- function negate(elen, e) {
137
- for (let i = 0; i < elen; i++) e[i] = -e[i];
138
- return elen;
139
- }
140
- function estimate(elen, e) {
141
- let Q = e[0];
142
- for (let i = 1; i < elen; i++) Q += e[i];
143
- return Q;
144
- }
145
- function vec(n) {
146
- return new Float64Array(n);
147
- }
@@ -1,57 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "incircle", {
7
- enumerable: true,
8
- get: function () {
9
- return _incircle.incircle;
10
- }
11
- });
12
- Object.defineProperty(exports, "incirclefast", {
13
- enumerable: true,
14
- get: function () {
15
- return _incircle.incirclefast;
16
- }
17
- });
18
- Object.defineProperty(exports, "insphere", {
19
- enumerable: true,
20
- get: function () {
21
- return _insphere.insphere;
22
- }
23
- });
24
- Object.defineProperty(exports, "inspherefast", {
25
- enumerable: true,
26
- get: function () {
27
- return _insphere.inspherefast;
28
- }
29
- });
30
- Object.defineProperty(exports, "orient2d", {
31
- enumerable: true,
32
- get: function () {
33
- return _orient2d.orient2d;
34
- }
35
- });
36
- Object.defineProperty(exports, "orient2dfast", {
37
- enumerable: true,
38
- get: function () {
39
- return _orient2d.orient2dfast;
40
- }
41
- });
42
- Object.defineProperty(exports, "orient3d", {
43
- enumerable: true,
44
- get: function () {
45
- return _orient3d.orient3d;
46
- }
47
- });
48
- Object.defineProperty(exports, "orient3dfast", {
49
- enumerable: true,
50
- get: function () {
51
- return _orient3d.orient3dfast;
52
- }
53
- });
54
- var _orient2d = require("./esm/orient2d.js");
55
- var _orient3d = require("./esm/orient3d.js");
56
- var _incircle = require("./esm/incircle.js");
57
- var _insphere = require("./esm/insphere.js");