pimath 0.0.34 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pi.js +49 -42
- package/dist/pi.js.map +1 -1
- package/dist/pi.min.js +1 -1
- package/dist/pi.min.js.map +1 -1
- package/esm/main.d.ts +30 -1
- package/esm/main.js +3 -2
- package/esm/main.js.map +1 -1
- package/esm/maths/algebra/index.js +5 -1
- package/esm/maths/algebra/index.js.map +1 -1
- package/esm/maths/coefficients/index.js +5 -1
- package/esm/maths/coefficients/index.js.map +1 -1
- package/esm/maths/geometry/index.js +5 -1
- package/esm/maths/geometry/index.js.map +1 -1
- package/esm/maths/geometry/triangle.d.ts +1 -1
- package/esm/maths/geometry/triangle.js.map +1 -1
- package/esm/maths/geometry/vector.d.ts +1 -1
- package/esm/maths/geometry/vector.js.map +1 -1
- package/esm/maths/random/index.js +5 -1
- package/esm/maths/random/index.js.map +1 -1
- package/package.json +1 -1
- package/src/main.ts +2 -2
- package/src/maths/geometry/index.ts +1 -1
- package/src/maths/geometry/triangle.ts +1 -1
- package/src/maths/geometry/vector.ts +1 -1
package/dist/pi.js
CHANGED
|
@@ -2,6 +2,49 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
+
/***/ 519:
|
|
6
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
7
|
+
|
|
8
|
+
var __webpack_unused_export__;
|
|
9
|
+
|
|
10
|
+
__webpack_unused_export__ = ({ value: true });
|
|
11
|
+
exports.l = void 0;
|
|
12
|
+
const numeric_1 = __webpack_require__(956);
|
|
13
|
+
const numexp_1 = __webpack_require__(735);
|
|
14
|
+
const shutingyard_1 = __webpack_require__(505);
|
|
15
|
+
const random_1 = __webpack_require__(984);
|
|
16
|
+
const coefficients_1 = __webpack_require__(534);
|
|
17
|
+
const algebra_1 = __webpack_require__(667);
|
|
18
|
+
const geometry_1 = __webpack_require__(272);
|
|
19
|
+
// Expose as global
|
|
20
|
+
exports.l = {
|
|
21
|
+
ShutingYard: shutingyard_1.Shutingyard,
|
|
22
|
+
Numeric: numeric_1.Numeric,
|
|
23
|
+
NumExp: numexp_1.NumExp,
|
|
24
|
+
Fraction: coefficients_1.Fraction,
|
|
25
|
+
Root: coefficients_1.Nthroot,
|
|
26
|
+
Monom: algebra_1.Monom,
|
|
27
|
+
Polynom: algebra_1.Polynom,
|
|
28
|
+
Equation: algebra_1.Equation,
|
|
29
|
+
LinearSystem: algebra_1.LinearSystem,
|
|
30
|
+
Rational: algebra_1.Rational,
|
|
31
|
+
Logicalset: algebra_1.Logicalset,
|
|
32
|
+
Random: random_1.Random,
|
|
33
|
+
PolynomExpFactor: algebra_1.PolynomExpFactor,
|
|
34
|
+
PolynomExpProduct: algebra_1.PolynomExpProduct,
|
|
35
|
+
Geometry: {
|
|
36
|
+
Vector: geometry_1.Vector,
|
|
37
|
+
Point: geometry_1.Point,
|
|
38
|
+
Line: geometry_1.Line,
|
|
39
|
+
Triangle: geometry_1.Triangle,
|
|
40
|
+
Circle: geometry_1.Circle
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
window.Pi = exports.l;
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
/***/ }),
|
|
47
|
+
|
|
5
48
|
/***/ 760:
|
|
6
49
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
7
50
|
|
|
@@ -6484,48 +6527,12 @@ exports.Shutingyard = Shutingyard;
|
|
|
6484
6527
|
/******/ }
|
|
6485
6528
|
/******/
|
|
6486
6529
|
/************************************************************************/
|
|
6487
|
-
|
|
6488
|
-
//
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
var
|
|
6492
|
-
|
|
6493
|
-
__webpack_unused_export__ = ({ value: true });
|
|
6494
|
-
const numeric_1 = __webpack_require__(956);
|
|
6495
|
-
const numexp_1 = __webpack_require__(735);
|
|
6496
|
-
const shutingyard_1 = __webpack_require__(505);
|
|
6497
|
-
const random_1 = __webpack_require__(984);
|
|
6498
|
-
const coefficients_1 = __webpack_require__(534);
|
|
6499
|
-
const algebra_1 = __webpack_require__(667);
|
|
6500
|
-
const geometry_1 = __webpack_require__(272);
|
|
6501
|
-
// Expose as global
|
|
6502
|
-
// export let Pi = {
|
|
6503
|
-
window.Pi = {
|
|
6504
|
-
ShutingYard: shutingyard_1.Shutingyard,
|
|
6505
|
-
Numeric: numeric_1.Numeric,
|
|
6506
|
-
NumExp: numexp_1.NumExp,
|
|
6507
|
-
Fraction: coefficients_1.Fraction,
|
|
6508
|
-
Root: coefficients_1.Nthroot,
|
|
6509
|
-
Monom: algebra_1.Monom,
|
|
6510
|
-
Polynom: algebra_1.Polynom,
|
|
6511
|
-
Equation: algebra_1.Equation,
|
|
6512
|
-
LinearSystem: algebra_1.LinearSystem,
|
|
6513
|
-
Rational: algebra_1.Rational,
|
|
6514
|
-
Logicalset: algebra_1.Logicalset,
|
|
6515
|
-
Random: random_1.Random,
|
|
6516
|
-
PolynomExpFactor: algebra_1.PolynomExpFactor,
|
|
6517
|
-
PolynomExpProduct: algebra_1.PolynomExpProduct,
|
|
6518
|
-
Geometry: {
|
|
6519
|
-
Vector: geometry_1.Vector,
|
|
6520
|
-
Point: geometry_1.Point,
|
|
6521
|
-
Line: geometry_1.Line,
|
|
6522
|
-
Triangle: geometry_1.Triangle,
|
|
6523
|
-
Circle: geometry_1.Circle
|
|
6524
|
-
}
|
|
6525
|
-
};
|
|
6526
|
-
|
|
6527
|
-
})();
|
|
6528
|
-
|
|
6530
|
+
/******/
|
|
6531
|
+
/******/ // startup
|
|
6532
|
+
/******/ // Load entry module and return exports
|
|
6533
|
+
/******/ // This entry module is referenced by other modules so it can't be inlined
|
|
6534
|
+
/******/ var __webpack_exports__ = __webpack_require__(519);
|
|
6535
|
+
/******/
|
|
6529
6536
|
/******/ })()
|
|
6530
6537
|
;
|
|
6531
6538
|
//# sourceMappingURL=pi.js.map
|