pimath 0.0.120 → 0.0.122

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 (175) hide show
  1. package/.idea/PI.iml +7 -1
  2. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31_[Default_Changelist]/shelved.patch +90 -0
  3. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31_[Default_Changelist]1/shelved.patch +107 -0
  4. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31__Default_Changelist_.xml +4 -0
  5. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31__Default_Changelist_1.xml +4 -0
  6. package/LICENSE.md +1 -1
  7. package/dev/pimath.js +7929 -0
  8. package/dev/pimath.js.map +1 -0
  9. package/dist/{pi.js → pimath.js} +7613 -7840
  10. package/dist/pimath.js.map +1 -0
  11. package/dist/pimath.min.js +2 -0
  12. package/dist/pimath.min.js.map +1 -0
  13. package/docs/assets/main.js +58 -58
  14. package/docs/assets/search.js +1 -1
  15. package/docs/assets/style.css +1367 -1280
  16. package/docs/classes/Logicalset.Logicalset.html +221 -212
  17. package/docs/classes/Polynom.Rational.html +391 -388
  18. package/docs/classes/Vector-1.Vector.html +494 -448
  19. package/docs/classes/Vector.Point.html +341 -342
  20. package/docs/classes/algebra_equation.Equation.html +796 -753
  21. package/docs/classes/algebra_linearSystem.LinearSystem.html +408 -397
  22. package/docs/classes/algebra_monom.Monom.html +967 -910
  23. package/docs/classes/algebra_polynom.Polynom.html +1281 -1260
  24. package/docs/classes/coefficients_fraction.Fraction.html +939 -931
  25. package/docs/classes/geometry_circle.Circle.html +476 -476
  26. package/docs/classes/geometry_line.Line.html +779 -719
  27. package/docs/classes/geometry_triangle.Triangle.html +429 -420
  28. package/docs/classes/numeric.Numeric.html +269 -263
  29. package/docs/classes/shutingyard.Shutingyard.html +259 -248
  30. package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +89 -88
  31. package/docs/enums/geometry_line.LinePropriety.html +102 -102
  32. package/docs/enums/shutingyard.ShutingyardMode.html +106 -102
  33. package/docs/enums/shutingyard.ShutingyardType.html +120 -116
  34. package/docs/index.html +63 -65
  35. package/docs/interfaces/algebra_equation.ISolution.html +111 -109
  36. package/docs/interfaces/algebra_polynom.IEuclidian.html +93 -92
  37. package/docs/interfaces/geometry_triangle.remarquableLines.html +150 -150
  38. package/docs/modules/Logicalset.html +69 -74
  39. package/docs/modules/Polynom.html +69 -74
  40. package/docs/modules/Vector-1.html +69 -74
  41. package/docs/modules/Vector.html +69 -74
  42. package/docs/modules/algebra_equation.html +75 -81
  43. package/docs/modules/algebra_linearSystem.html +65 -71
  44. package/docs/modules/algebra_monom.html +70 -76
  45. package/docs/modules/algebra_polynom.html +75 -81
  46. package/docs/modules/coefficients_fraction.html +70 -76
  47. package/docs/modules/geometry_circle.html +65 -71
  48. package/docs/modules/geometry_line.html +70 -76
  49. package/docs/modules/geometry_triangle.html +70 -76
  50. package/docs/modules/numeric.html +65 -71
  51. package/docs/modules/shutingyard.html +84 -90
  52. package/docs/types/algebra_monom.literalType.html +66 -70
  53. package/docs/types/algebra_polynom.PolynomParsingType.html +62 -66
  54. package/docs/types/coefficients_fraction.FractionParsingType.html +61 -65
  55. package/docs/types/shutingyard.Token.html +72 -76
  56. package/docs/types/shutingyard.tokenType.html +77 -81
  57. package/docs/variables/shutingyard.tokenConstant.html +70 -74
  58. package/esm/index.d.ts +38 -41
  59. package/esm/index.js +43 -46
  60. package/esm/index.js.map +1 -1
  61. package/esm/maths/algebra/equation.d.ts +119 -117
  62. package/esm/maths/algebra/equation.js +796 -785
  63. package/esm/maths/algebra/equation.js.map +1 -1
  64. package/esm/maths/algebra/linearSystem.d.ts +39 -38
  65. package/esm/maths/algebra/linearSystem.js +278 -262
  66. package/esm/maths/algebra/linearSystem.js.map +1 -1
  67. package/esm/maths/algebra/logicalset.d.ts +28 -28
  68. package/esm/maths/algebra/logicalset.js +157 -157
  69. package/esm/maths/algebra/monom.d.ts +206 -206
  70. package/esm/maths/algebra/monom.js +908 -908
  71. package/esm/maths/algebra/monom.js.map +1 -1
  72. package/esm/maths/algebra/polynom.d.ts +157 -157
  73. package/esm/maths/algebra/polynom.js +1277 -1277
  74. package/esm/maths/algebra/rational.d.ts +45 -45
  75. package/esm/maths/algebra/rational.js +183 -183
  76. package/esm/maths/algebra/study/rationalStudy.d.ts +28 -28
  77. package/esm/maths/algebra/study/rationalStudy.js +243 -243
  78. package/esm/maths/algebra/study.d.ts +143 -142
  79. package/esm/maths/algebra/study.js +378 -377
  80. package/esm/maths/algebra/study.js.map +1 -1
  81. package/esm/maths/coefficients/fraction.d.ts +90 -90
  82. package/esm/maths/coefficients/fraction.js +516 -516
  83. package/esm/maths/coefficients/fraction.js.map +1 -1
  84. package/esm/maths/coefficients/nthRoot.d.ts +23 -23
  85. package/esm/maths/coefficients/nthRoot.js +136 -136
  86. package/esm/maths/geometry/circle.d.ts +45 -45
  87. package/esm/maths/geometry/circle.js +323 -323
  88. package/esm/maths/geometry/line.d.ts +99 -99
  89. package/esm/maths/geometry/line.js +481 -481
  90. package/esm/maths/geometry/line.js.map +1 -1
  91. package/esm/maths/geometry/point.d.ts +34 -34
  92. package/esm/maths/geometry/point.js +166 -166
  93. package/esm/maths/geometry/point.js.map +1 -1
  94. package/esm/maths/geometry/triangle.d.ts +85 -85
  95. package/esm/maths/geometry/triangle.js +268 -268
  96. package/esm/maths/geometry/vector.d.ts +41 -41
  97. package/esm/maths/geometry/vector.js +197 -197
  98. package/esm/maths/geometry/vector.js.map +1 -1
  99. package/esm/maths/numeric.d.ts +28 -28
  100. package/esm/maths/numeric.js +180 -180
  101. package/esm/maths/numexp.d.ts +19 -0
  102. package/esm/maths/numexp.js +186 -0
  103. package/esm/maths/numexp.js.map +1 -0
  104. package/esm/maths/randomization/random.d.ts +23 -23
  105. package/esm/maths/randomization/random.js +78 -78
  106. package/esm/maths/randomization/random.js.map +1 -1
  107. package/esm/maths/randomization/randomCore.d.ts +7 -7
  108. package/esm/maths/randomization/randomCore.js +21 -21
  109. package/esm/maths/randomization/rndFraction.d.ts +12 -12
  110. package/esm/maths/randomization/rndFraction.js +43 -43
  111. package/esm/maths/randomization/rndGeometryLine.d.ts +12 -12
  112. package/esm/maths/randomization/rndGeometryLine.js +45 -45
  113. package/esm/maths/randomization/rndGeometryPoint.d.ts +12 -12
  114. package/esm/maths/randomization/rndGeometryPoint.js +60 -60
  115. package/esm/maths/randomization/rndHelpers.d.ts +23 -23
  116. package/esm/maths/randomization/rndHelpers.js +76 -76
  117. package/esm/maths/randomization/rndMonom.d.ts +12 -12
  118. package/esm/maths/randomization/rndMonom.js +52 -52
  119. package/esm/maths/randomization/rndPolynom.d.ts +13 -13
  120. package/esm/maths/randomization/rndPolynom.js +74 -74
  121. package/esm/maths/randomization/rndTypes.d.ts +34 -34
  122. package/esm/maths/randomization/rndTypes.js +2 -2
  123. package/esm/maths/shutingyard.d.ts +59 -59
  124. package/esm/maths/shutingyard.js +442 -442
  125. package/esm/maths/shutingyard.js.map +1 -1
  126. package/package.json +11 -11
  127. package/public/index.html +50 -81
  128. package/public/playground.html +7 -8
  129. package/src/index.ts +1 -4
  130. package/src/maths/algebra/equation.ts +16 -0
  131. package/src/maths/algebra/linearSystem.ts +20 -0
  132. package/src/maths/algebra/study.ts +12 -10
  133. package/src/maths/{expressions/numexp.ts → numexp.ts} +2 -2
  134. package/tests/algebra/equation.test.ts +19 -5
  135. package/tests/algebra/linear.test.ts +3 -11
  136. package/tests/algebra/polynom.test.ts +7 -8
  137. package/tests/algebra/rationnal.test.ts +1 -1
  138. package/tests/algebra/study.test.ts +2 -9
  139. package/tests/coefficients/fraction.test.ts +8 -8
  140. package/tests/custom.test.ts +33 -37
  141. package/tests/numeric.test.ts +1 -2
  142. package/tests/numexp.test.ts +13 -5
  143. package/tests/shutingyard.test.ts +3 -3
  144. package/webpack-production-min.config.js +1 -1
  145. package/webpack-production.config.js +1 -1
  146. package/webpack.config.js +1 -1
  147. package/dist/pi.js.map +0 -1
  148. package/dist/pi.min.js +0 -2
  149. package/dist/pi.min.js.map +0 -1
  150. package/docs/classes/expressions_numexp.NumExp.html +0 -236
  151. package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +0 -317
  152. package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +0 -285
  153. package/docs/modules/expressions_numexp.html +0 -71
  154. package/docs/modules/expressions_polynomexp.html +0 -73
  155. package/docs/modules.html +0 -76
  156. package/graph.svg +0 -1033
  157. package/src/maths/expressions/ExpressionTree.ts +0 -172
  158. package/src/maths/expressions/expression.ts +0 -286
  159. package/src/maths/expressions/expressionFactor.ts +0 -190
  160. package/src/maths/expressions/expressionMember.ts +0 -233
  161. package/src/maths/expressions/expressionOperators.ts +0 -49
  162. package/src/maths/expressions/expressionParser.ts +0 -295
  163. package/src/maths/expressions/factors/ExpFactor.ts +0 -39
  164. package/src/maths/expressions/factors/ExpFactorConstant.ts +0 -60
  165. package/src/maths/expressions/factors/ExpFactorExponential.ts +0 -26
  166. package/src/maths/expressions/factors/ExpFactorNumber.ts +0 -72
  167. package/src/maths/expressions/factors/ExpFactorPower.ts +0 -42
  168. package/src/maths/expressions/factors/ExpFactorTrigo.ts +0 -53
  169. package/src/maths/expressions/factors/ExpFactorVariable.ts +0 -45
  170. package/src/maths/expressions/internals.ts +0 -14
  171. package/src/maths/expressions/polynomexp.bkp.ts +0 -221
  172. package/src/maths/expressions/polynomexp.ts +0 -310
  173. package/tests/expressions/expressions.test.ts +0 -145
  174. package/tests/expressions/expressiontree.test.ts +0 -11
  175. package/tests/polynomexp.test.ts +0 -12
@@ -1,99 +1,99 @@
1
- /**
2
- * This class works for 2d line in a plane.
3
- */
4
- import { Vector } from "./vector";
5
- import { Point } from "./point";
6
- import { Fraction } from "../coefficients/fraction";
7
- import { Equation } from "../algebra/equation";
8
- export declare enum LinePropriety {
9
- None = 0,
10
- Parallel = "parallel",
11
- Perpendicular = "perpendicular",
12
- Tangent = "tangent"
13
- }
14
- export declare class Line {
15
- static PERPENDICULAR: LinePropriety;
16
- static PARALLEL: LinePropriety;
17
- private _referencePropriety;
18
- private _referenceLine;
19
- private _reduceBeforeDisplay;
20
- constructor(...values: unknown[]);
21
- private _a;
22
- get a(): Fraction;
23
- set a(value: Fraction);
24
- private _b;
25
- get b(): Fraction;
26
- set b(value: Fraction);
27
- private _c;
28
- get c(): Fraction;
29
- set c(value: Fraction);
30
- private _OA;
31
- get OA(): Point;
32
- set OA(value: Point);
33
- private _d;
34
- get d(): Vector;
35
- set d(value: Vector);
36
- private _n;
37
- get n(): Vector;
38
- private _exists;
39
- get exists(): boolean;
40
- get equation(): Equation;
41
- get system(): {
42
- x: Equation;
43
- y: Equation;
44
- };
45
- get tex(): {
46
- canonical: string;
47
- mxh: string;
48
- parametric: string;
49
- equation: string;
50
- system: string;
51
- };
52
- get reduceBeforeDisplay(): boolean;
53
- set reduceBeforeDisplay(value: boolean);
54
- get display(): {
55
- canonical: string;
56
- mxh: string;
57
- parametric: string;
58
- };
59
- get normal(): Vector;
60
- get director(): Vector;
61
- get slope(): Fraction;
62
- get height(): Fraction;
63
- randomPoint: (k?: number) => Point;
64
- randomNearPoint: (k?: number) => Point;
65
- /**
66
- * Parse data to a line
67
- * @param {any} values
68
- * @returns {Line}
69
- */
70
- parse: (...values: unknown[]) => Line;
71
- parseEquation: (equ: Equation) => Line;
72
- parseByCoefficient: (a: Fraction | number, b: Fraction | number, c: Fraction | number) => Line;
73
- parseByPointAndVector: (P: Point, d: Vector) => Line;
74
- parseByPointAndNormal: (P: Point, n: Vector) => Line;
75
- parseByPointAndLine: (P: Point, L: Line, orientation?: LinePropriety) => Line;
76
- clone: () => Line;
77
- isOnLine: (pt: Point) => Boolean;
78
- isParallelTo: (line: Line) => Boolean;
79
- isSameAs: (line: Line) => Boolean;
80
- isPerpendicularTo: (line: Line) => Boolean;
81
- isVertical: () => Boolean;
82
- simplify: () => Line;
83
- simplifyDirection: () => Line;
84
- intersection: (line: Line) => {
85
- point: Point;
86
- hasIntersection: boolean;
87
- isParallel: boolean;
88
- isSame: boolean;
89
- };
90
- distanceTo(pt: Point): {
91
- value: number;
92
- fraction: Fraction;
93
- tex: string;
94
- };
95
- hitSegment(A: Point, B: Point): boolean;
96
- getValueAtX: (value: Fraction | number) => Fraction;
97
- getValueAtY: (value: Fraction | number) => Fraction;
98
- canonicalAsFloatCoefficient(decimals: number): string;
99
- }
1
+ /**
2
+ * This class works for 2d line in a plane.
3
+ */
4
+ import { Vector } from "./vector";
5
+ import { Point } from "./point";
6
+ import { Fraction } from "../coefficients/fraction";
7
+ import { Equation } from "../algebra/equation";
8
+ export declare enum LinePropriety {
9
+ None = 0,
10
+ Parallel = "parallel",
11
+ Perpendicular = "perpendicular",
12
+ Tangent = "tangent"
13
+ }
14
+ export declare class Line {
15
+ static PERPENDICULAR: LinePropriety;
16
+ static PARALLEL: LinePropriety;
17
+ private _referencePropriety;
18
+ private _referenceLine;
19
+ private _reduceBeforeDisplay;
20
+ constructor(...values: unknown[]);
21
+ private _a;
22
+ get a(): Fraction;
23
+ set a(value: Fraction);
24
+ private _b;
25
+ get b(): Fraction;
26
+ set b(value: Fraction);
27
+ private _c;
28
+ get c(): Fraction;
29
+ set c(value: Fraction);
30
+ private _OA;
31
+ get OA(): Point;
32
+ set OA(value: Point);
33
+ private _d;
34
+ get d(): Vector;
35
+ set d(value: Vector);
36
+ private _n;
37
+ get n(): Vector;
38
+ private _exists;
39
+ get exists(): boolean;
40
+ get equation(): Equation;
41
+ get system(): {
42
+ x: Equation;
43
+ y: Equation;
44
+ };
45
+ get tex(): {
46
+ canonical: string;
47
+ mxh: string;
48
+ parametric: string;
49
+ equation: string;
50
+ system: string;
51
+ };
52
+ get reduceBeforeDisplay(): boolean;
53
+ set reduceBeforeDisplay(value: boolean);
54
+ get display(): {
55
+ canonical: string;
56
+ mxh: string;
57
+ parametric: string;
58
+ };
59
+ get normal(): Vector;
60
+ get director(): Vector;
61
+ get slope(): Fraction;
62
+ get height(): Fraction;
63
+ randomPoint: (k?: number) => Point;
64
+ randomNearPoint: (k?: number) => Point;
65
+ /**
66
+ * Parse data to a line
67
+ * @param {any} values
68
+ * @returns {Line}
69
+ */
70
+ parse: (...values: unknown[]) => Line;
71
+ parseEquation: (equ: Equation) => Line;
72
+ parseByCoefficient: (a: Fraction | number, b: Fraction | number, c: Fraction | number) => Line;
73
+ parseByPointAndVector: (P: Point, d: Vector) => Line;
74
+ parseByPointAndNormal: (P: Point, n: Vector) => Line;
75
+ parseByPointAndLine: (P: Point, L: Line, orientation?: LinePropriety) => Line;
76
+ clone: () => Line;
77
+ isOnLine: (pt: Point) => Boolean;
78
+ isParallelTo: (line: Line) => Boolean;
79
+ isSameAs: (line: Line) => Boolean;
80
+ isPerpendicularTo: (line: Line) => Boolean;
81
+ isVertical: () => Boolean;
82
+ simplify: () => Line;
83
+ simplifyDirection: () => Line;
84
+ intersection: (line: Line) => {
85
+ point: Point;
86
+ hasIntersection: boolean;
87
+ isParallel: boolean;
88
+ isSame: boolean;
89
+ };
90
+ distanceTo(pt: Point): {
91
+ value: number;
92
+ fraction: Fraction;
93
+ tex: string;
94
+ };
95
+ hitSegment(A: Point, B: Point): boolean;
96
+ getValueAtX: (value: Fraction | number) => Fraction;
97
+ getValueAtY: (value: Fraction | number) => Fraction;
98
+ canonicalAsFloatCoefficient(decimals: number): string;
99
+ }