pimath 0.0.120 → 0.0.121
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/.eslintrc.js +23 -23
- package/.idea/PI.iml +7 -1
- package/dev/pimath.js +7929 -0
- package/dev/pimath.js.map +1 -0
- package/dist/{pi.js → pimath.js} +7612 -7840
- package/dist/pimath.js.map +1 -0
- package/dist/pimath.min.js +2 -0
- package/dist/pimath.min.js.map +1 -0
- package/docs/assets/main.js +3 -3
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +450 -363
- package/docs/classes/Logicalset.Logicalset.html +119 -110
- package/docs/classes/Polynom.Rational.html +230 -227
- package/docs/classes/Vector-1.Vector.html +319 -273
- package/docs/classes/Vector.Point.html +189 -190
- package/docs/classes/algebra_equation.Equation.html +489 -446
- package/docs/classes/algebra_linearSystem.LinearSystem.html +228 -217
- package/docs/classes/algebra_monom.Monom.html +564 -507
- package/docs/classes/algebra_polynom.Polynom.html +774 -753
- package/docs/classes/coefficients_fraction.Fraction.html +573 -565
- package/docs/classes/geometry_circle.Circle.html +299 -299
- package/docs/classes/geometry_line.Line.html +511 -451
- package/docs/classes/geometry_triangle.Triangle.html +273 -264
- package/docs/classes/numeric.Numeric.html +138 -132
- package/docs/classes/shutingyard.Shutingyard.html +144 -133
- package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +47 -46
- package/docs/enums/geometry_line.LinePropriety.html +58 -58
- package/docs/enums/shutingyard.ShutingyardMode.html +62 -58
- package/docs/enums/shutingyard.ShutingyardType.html +74 -70
- package/docs/index.html +31 -33
- package/docs/interfaces/algebra_equation.ISolution.html +61 -59
- package/docs/interfaces/algebra_polynom.IEuclidian.html +47 -46
- package/docs/interfaces/geometry_triangle.remarquableLines.html +74 -74
- package/docs/modules/Logicalset.html +33 -38
- package/docs/modules/Polynom.html +33 -38
- package/docs/modules/Vector-1.html +33 -38
- package/docs/modules/Vector.html +33 -38
- package/docs/modules/algebra_equation.html +35 -41
- package/docs/modules/algebra_linearSystem.html +31 -37
- package/docs/modules/algebra_monom.html +33 -39
- package/docs/modules/algebra_polynom.html +35 -41
- package/docs/modules/coefficients_fraction.html +33 -39
- package/docs/modules/geometry_circle.html +31 -37
- package/docs/modules/geometry_line.html +33 -39
- package/docs/modules/geometry_triangle.html +33 -39
- package/docs/modules/numeric.html +31 -37
- package/docs/modules/shutingyard.html +41 -47
- package/docs/types/algebra_monom.literalType.html +33 -37
- package/docs/types/algebra_polynom.PolynomParsingType.html +33 -37
- package/docs/types/coefficients_fraction.FractionParsingType.html +32 -36
- package/docs/types/shutingyard.Token.html +38 -42
- package/docs/types/shutingyard.tokenType.html +40 -44
- package/docs/variables/shutingyard.tokenConstant.html +37 -41
- package/esm/index.d.ts +38 -41
- package/esm/index.js +43 -46
- package/esm/index.js.map +1 -1
- package/esm/maths/algebra/equation.d.ts +119 -117
- package/esm/maths/algebra/equation.js +796 -785
- package/esm/maths/algebra/equation.js.map +1 -1
- package/esm/maths/algebra/linearSystem.d.ts +39 -38
- package/esm/maths/algebra/linearSystem.js +278 -262
- package/esm/maths/algebra/linearSystem.js.map +1 -1
- package/esm/maths/algebra/logicalset.d.ts +28 -28
- package/esm/maths/algebra/logicalset.js +157 -157
- package/esm/maths/algebra/monom.d.ts +206 -206
- package/esm/maths/algebra/monom.js +908 -908
- package/esm/maths/algebra/monom.js.map +1 -1
- package/esm/maths/algebra/polynom.d.ts +157 -157
- package/esm/maths/algebra/polynom.js +1277 -1277
- package/esm/maths/algebra/rational.d.ts +45 -45
- package/esm/maths/algebra/rational.js +183 -183
- package/esm/maths/algebra/study/rationalStudy.d.ts +28 -28
- package/esm/maths/algebra/study/rationalStudy.js +243 -243
- package/esm/maths/algebra/study.d.ts +142 -142
- package/esm/maths/algebra/study.js +377 -377
- package/esm/maths/algebra/study.js.map +1 -1
- package/esm/maths/coefficients/fraction.d.ts +90 -90
- package/esm/maths/coefficients/fraction.js +516 -516
- package/esm/maths/coefficients/fraction.js.map +1 -1
- package/esm/maths/coefficients/nthRoot.d.ts +23 -23
- package/esm/maths/coefficients/nthRoot.js +136 -136
- package/esm/maths/geometry/circle.d.ts +45 -45
- package/esm/maths/geometry/circle.js +323 -323
- package/esm/maths/geometry/line.d.ts +99 -99
- package/esm/maths/geometry/line.js +481 -481
- package/esm/maths/geometry/line.js.map +1 -1
- package/esm/maths/geometry/point.d.ts +34 -34
- package/esm/maths/geometry/point.js +166 -166
- package/esm/maths/geometry/point.js.map +1 -1
- package/esm/maths/geometry/triangle.d.ts +85 -85
- package/esm/maths/geometry/triangle.js +268 -268
- package/esm/maths/geometry/vector.d.ts +41 -41
- package/esm/maths/geometry/vector.js +197 -197
- package/esm/maths/geometry/vector.js.map +1 -1
- package/esm/maths/numeric.d.ts +28 -28
- package/esm/maths/numeric.js +180 -180
- package/esm/maths/numexp.d.ts +19 -0
- package/esm/maths/numexp.js +186 -0
- package/esm/maths/numexp.js.map +1 -0
- package/esm/maths/randomization/random.d.ts +23 -23
- package/esm/maths/randomization/random.js +78 -78
- package/esm/maths/randomization/random.js.map +1 -1
- package/esm/maths/randomization/randomCore.d.ts +7 -7
- package/esm/maths/randomization/randomCore.js +21 -21
- package/esm/maths/randomization/rndFraction.d.ts +12 -12
- package/esm/maths/randomization/rndFraction.js +43 -43
- package/esm/maths/randomization/rndGeometryLine.d.ts +12 -12
- package/esm/maths/randomization/rndGeometryLine.js +45 -45
- package/esm/maths/randomization/rndGeometryPoint.d.ts +12 -12
- package/esm/maths/randomization/rndGeometryPoint.js +60 -60
- package/esm/maths/randomization/rndHelpers.d.ts +23 -23
- package/esm/maths/randomization/rndHelpers.js +76 -76
- package/esm/maths/randomization/rndMonom.d.ts +12 -12
- package/esm/maths/randomization/rndMonom.js +52 -52
- package/esm/maths/randomization/rndPolynom.d.ts +13 -13
- package/esm/maths/randomization/rndPolynom.js +74 -74
- package/esm/maths/randomization/rndTypes.d.ts +34 -34
- package/esm/maths/randomization/rndTypes.js +2 -2
- package/esm/maths/shutingyard.d.ts +59 -59
- package/esm/maths/shutingyard.js +442 -442
- package/esm/maths/shutingyard.js.map +1 -1
- package/package.json +11 -11
- package/public/index.html +50 -81
- package/public/playground.html +7 -8
- package/src/index.ts +2 -5
- package/src/maths/algebra/equation.ts +16 -0
- package/src/maths/algebra/linearSystem.ts +20 -0
- package/src/maths/algebra/study.ts +1 -1
- package/src/maths/{expressions/numexp.ts → numexp.ts} +2 -2
- package/tests/algebra/equation.test.ts +19 -5
- package/tests/algebra/linear.test.ts +3 -11
- package/tests/algebra/polynom.test.ts +7 -8
- package/tests/algebra/rationnal.test.ts +1 -1
- package/tests/algebra/study.test.ts +2 -9
- package/tests/coefficients/fraction.test.ts +8 -8
- package/tests/custom.test.ts +33 -37
- package/tests/numeric.test.ts +1 -2
- package/tests/numexp.test.ts +1 -5
- package/tests/shutingyard.test.ts +3 -3
- package/webpack-production-min.config.js +1 -1
- package/webpack-production.config.js +1 -1
- package/webpack.config.js +1 -1
- package/dist/pi.js.map +0 -1
- package/dist/pi.min.js +0 -2
- package/dist/pi.min.js.map +0 -1
- package/docs/classes/expressions_numexp.NumExp.html +0 -236
- package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +0 -317
- package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +0 -285
- package/docs/modules/expressions_numexp.html +0 -71
- package/docs/modules/expressions_polynomexp.html +0 -73
- package/docs/modules.html +0 -76
- package/graph.svg +0 -1033
- package/src/maths/expressions/ExpressionTree.ts +0 -172
- package/src/maths/expressions/expression.ts +0 -286
- package/src/maths/expressions/expressionFactor.ts +0 -190
- package/src/maths/expressions/expressionMember.ts +0 -233
- package/src/maths/expressions/expressionOperators.ts +0 -49
- package/src/maths/expressions/expressionParser.ts +0 -295
- package/src/maths/expressions/factors/ExpFactor.ts +0 -39
- package/src/maths/expressions/factors/ExpFactorConstant.ts +0 -60
- package/src/maths/expressions/factors/ExpFactorExponential.ts +0 -26
- package/src/maths/expressions/factors/ExpFactorNumber.ts +0 -72
- package/src/maths/expressions/factors/ExpFactorPower.ts +0 -42
- package/src/maths/expressions/factors/ExpFactorTrigo.ts +0 -53
- package/src/maths/expressions/factors/ExpFactorVariable.ts +0 -45
- package/src/maths/expressions/internals.ts +0 -14
- package/src/maths/expressions/polynomexp.bkp.ts +0 -221
- package/src/maths/expressions/polynomexp.ts +0 -310
- package/tests/expressions/expressions.test.ts +0 -145
- package/tests/expressions/expressiontree.test.ts +0 -11
- package/tests/polynomexp.test.ts +0 -12
|
@@ -1,142 +1,142 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Rational polynom module contains everything necessary to handle rational polynoms.
|
|
3
|
-
* @module Polynom
|
|
4
|
-
*/
|
|
5
|
-
import { Rational } from "./rational";
|
|
6
|
-
import { ISolution } from "./equation";
|
|
7
|
-
import { Polynom } from "./polynom";
|
|
8
|
-
export type StudyableFunction = Rational;
|
|
9
|
-
export declare enum ZEROTYPE {
|
|
10
|
-
ZERO = "z",
|
|
11
|
-
DEFENCE = "d",
|
|
12
|
-
NOTHING = "t"
|
|
13
|
-
}
|
|
14
|
-
export interface IZero extends ISolution {
|
|
15
|
-
extrema: FUNCTION_EXTREMA;
|
|
16
|
-
type: ZEROTYPE;
|
|
17
|
-
}
|
|
18
|
-
export declare enum ASYMPTOTE {
|
|
19
|
-
VERTICAL = "av",
|
|
20
|
-
HORIZONTAL = "ah",
|
|
21
|
-
SLOPE = "ao",
|
|
22
|
-
HOLE = "hole"
|
|
23
|
-
}
|
|
24
|
-
export declare enum ASYMPTOTE_POSITION {
|
|
25
|
-
"LT" = "LT",
|
|
26
|
-
"RT" = "RT",
|
|
27
|
-
"LB" = "LB",
|
|
28
|
-
"RB" = "RB"
|
|
29
|
-
}
|
|
30
|
-
export interface IAsymptote {
|
|
31
|
-
deltaX: StudyableFunction;
|
|
32
|
-
display: string;
|
|
33
|
-
fx: Polynom;
|
|
34
|
-
limits: string;
|
|
35
|
-
position: ASYMPTOTE_POSITION[];
|
|
36
|
-
tableOfSign: ITableOfSigns;
|
|
37
|
-
tex: string;
|
|
38
|
-
type: ASYMPTOTE;
|
|
39
|
-
zero: IZero;
|
|
40
|
-
}
|
|
41
|
-
export declare enum FUNCTION_EXTREMA {
|
|
42
|
-
MIN = "min",
|
|
43
|
-
MAX = "max",
|
|
44
|
-
FLAT = "flat",
|
|
45
|
-
NOTHING = ""
|
|
46
|
-
}
|
|
47
|
-
export interface IExtrema {
|
|
48
|
-
tex: {
|
|
49
|
-
x: string;
|
|
50
|
-
y: string;
|
|
51
|
-
};
|
|
52
|
-
type: FUNCTION_EXTREMA;
|
|
53
|
-
value: {
|
|
54
|
-
x: number;
|
|
55
|
-
y: number;
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
export interface ITableOfSigns {
|
|
59
|
-
extremes: {
|
|
60
|
-
[Key: string]: IExtrema;
|
|
61
|
-
};
|
|
62
|
-
factors: Polynom[];
|
|
63
|
-
fx: StudyableFunction;
|
|
64
|
-
signs: (string[])[];
|
|
65
|
-
tex: string;
|
|
66
|
-
type: TABLE_OF_SIGNS;
|
|
67
|
-
zeroes: IZero[];
|
|
68
|
-
}
|
|
69
|
-
export declare enum TABLE_OF_SIGNS {
|
|
70
|
-
SIGNS = "signs",
|
|
71
|
-
GROWS = "grows",
|
|
72
|
-
VARIATIONS = "variatins"
|
|
73
|
-
}
|
|
74
|
-
export interface StudyConfig {
|
|
75
|
-
asymptotes?: boolean;
|
|
76
|
-
derivative?: boolean;
|
|
77
|
-
domain?: boolean;
|
|
78
|
-
name?: string;
|
|
79
|
-
signs?: boolean;
|
|
80
|
-
variations?: boolean;
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* The study class is a "function study" class that will get:
|
|
84
|
-
* fx : get the function
|
|
85
|
-
* domain : string
|
|
86
|
-
* zeroes : Object (tex, IZero)
|
|
87
|
-
* signs : table of signs + tex output using tkz-tab
|
|
88
|
-
* av : vertical asymptotic
|
|
89
|
-
* ah : horizontal asymptotic
|
|
90
|
-
* ao : obliques
|
|
91
|
-
* deltaX : position relative
|
|
92
|
-
* dx : derivative
|
|
93
|
-
* grows : growing table + tex output using tkz-tab
|
|
94
|
-
* ddx : dérivée seconde
|
|
95
|
-
* variations : variation table + tex output using tkz-tab
|
|
96
|
-
*/
|
|
97
|
-
export declare class Study {
|
|
98
|
-
fx: StudyableFunction;
|
|
99
|
-
private _asymptotes;
|
|
100
|
-
private _derivative;
|
|
101
|
-
private _signs;
|
|
102
|
-
private _variations;
|
|
103
|
-
private _zeroes;
|
|
104
|
-
private _config;
|
|
105
|
-
private _name;
|
|
106
|
-
constructor(fx: StudyableFunction, config?: StudyConfig | string);
|
|
107
|
-
get name(): string;
|
|
108
|
-
set name(value: string);
|
|
109
|
-
get config(): StudyConfig;
|
|
110
|
-
set config(value: StudyConfig);
|
|
111
|
-
get zeroes(): IZero[];
|
|
112
|
-
get domain(): string;
|
|
113
|
-
get signs(): ITableOfSigns;
|
|
114
|
-
get asymptotes(): IAsymptote[];
|
|
115
|
-
get derivative(): ITableOfSigns;
|
|
116
|
-
get texSigns(): string;
|
|
117
|
-
get texGrows(): string;
|
|
118
|
-
get texVariations(): string;
|
|
119
|
-
makeStudy: () => void;
|
|
120
|
-
indexOfZero: (zeroes: IZero[], zero: IZero | ISolution) => number;
|
|
121
|
-
makeOneLineForSigns: (factor: Polynom, zeroes: IZero[], zeroSign: ZEROTYPE) => string[];
|
|
122
|
-
makeSignsResult: (signs: (string[])[]) => string[];
|
|
123
|
-
makeGrowsResult: (tos: ITableOfSigns) => {
|
|
124
|
-
growsLine: string[];
|
|
125
|
-
extremes: {
|
|
126
|
-
[Key: string]: IExtrema;
|
|
127
|
-
};
|
|
128
|
-
};
|
|
129
|
-
makeVariationsResult: (tos: ITableOfSigns) => {
|
|
130
|
-
varsLine: string[];
|
|
131
|
-
extremes: {
|
|
132
|
-
[Key: string]: IExtrema;
|
|
133
|
-
};
|
|
134
|
-
};
|
|
135
|
-
makeZeroes(): IZero[];
|
|
136
|
-
makeSigns(): ITableOfSigns;
|
|
137
|
-
makeAsymptotes(): IAsymptote[];
|
|
138
|
-
makeDerivative(): ITableOfSigns;
|
|
139
|
-
makeVariation(): ITableOfSigns;
|
|
140
|
-
drawCode: () => string;
|
|
141
|
-
private _makeTexFromTableOfSigns;
|
|
142
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Rational polynom module contains everything necessary to handle rational polynoms.
|
|
3
|
+
* @module Polynom
|
|
4
|
+
*/
|
|
5
|
+
import { Rational } from "./rational";
|
|
6
|
+
import { ISolution } from "./equation";
|
|
7
|
+
import { Polynom } from "./polynom";
|
|
8
|
+
export type StudyableFunction = Rational;
|
|
9
|
+
export declare enum ZEROTYPE {
|
|
10
|
+
ZERO = "z",
|
|
11
|
+
DEFENCE = "d",
|
|
12
|
+
NOTHING = "t"
|
|
13
|
+
}
|
|
14
|
+
export interface IZero extends ISolution {
|
|
15
|
+
extrema: FUNCTION_EXTREMA;
|
|
16
|
+
type: ZEROTYPE;
|
|
17
|
+
}
|
|
18
|
+
export declare enum ASYMPTOTE {
|
|
19
|
+
VERTICAL = "av",
|
|
20
|
+
HORIZONTAL = "ah",
|
|
21
|
+
SLOPE = "ao",
|
|
22
|
+
HOLE = "hole"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ASYMPTOTE_POSITION {
|
|
25
|
+
"LT" = "LT",
|
|
26
|
+
"RT" = "RT",
|
|
27
|
+
"LB" = "LB",
|
|
28
|
+
"RB" = "RB"
|
|
29
|
+
}
|
|
30
|
+
export interface IAsymptote {
|
|
31
|
+
deltaX: StudyableFunction;
|
|
32
|
+
display: string;
|
|
33
|
+
fx: Polynom;
|
|
34
|
+
limits: string;
|
|
35
|
+
position: ASYMPTOTE_POSITION[];
|
|
36
|
+
tableOfSign: ITableOfSigns;
|
|
37
|
+
tex: string;
|
|
38
|
+
type: ASYMPTOTE;
|
|
39
|
+
zero: IZero;
|
|
40
|
+
}
|
|
41
|
+
export declare enum FUNCTION_EXTREMA {
|
|
42
|
+
MIN = "min",
|
|
43
|
+
MAX = "max",
|
|
44
|
+
FLAT = "flat",
|
|
45
|
+
NOTHING = ""
|
|
46
|
+
}
|
|
47
|
+
export interface IExtrema {
|
|
48
|
+
tex: {
|
|
49
|
+
x: string;
|
|
50
|
+
y: string;
|
|
51
|
+
};
|
|
52
|
+
type: FUNCTION_EXTREMA;
|
|
53
|
+
value: {
|
|
54
|
+
x: number;
|
|
55
|
+
y: number;
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
export interface ITableOfSigns {
|
|
59
|
+
extremes: {
|
|
60
|
+
[Key: string]: IExtrema;
|
|
61
|
+
};
|
|
62
|
+
factors: Polynom[];
|
|
63
|
+
fx: StudyableFunction;
|
|
64
|
+
signs: (string[])[];
|
|
65
|
+
tex: string;
|
|
66
|
+
type: TABLE_OF_SIGNS;
|
|
67
|
+
zeroes: IZero[];
|
|
68
|
+
}
|
|
69
|
+
export declare enum TABLE_OF_SIGNS {
|
|
70
|
+
SIGNS = "signs",
|
|
71
|
+
GROWS = "grows",
|
|
72
|
+
VARIATIONS = "variatins"
|
|
73
|
+
}
|
|
74
|
+
export interface StudyConfig {
|
|
75
|
+
asymptotes?: boolean;
|
|
76
|
+
derivative?: boolean;
|
|
77
|
+
domain?: boolean;
|
|
78
|
+
name?: string;
|
|
79
|
+
signs?: boolean;
|
|
80
|
+
variations?: boolean;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* The study class is a "function study" class that will get:
|
|
84
|
+
* fx : get the function
|
|
85
|
+
* domain : string
|
|
86
|
+
* zeroes : Object (tex, IZero)
|
|
87
|
+
* signs : table of signs + tex output using tkz-tab
|
|
88
|
+
* av : vertical asymptotic
|
|
89
|
+
* ah : horizontal asymptotic
|
|
90
|
+
* ao : obliques
|
|
91
|
+
* deltaX : position relative
|
|
92
|
+
* dx : derivative
|
|
93
|
+
* grows : growing table + tex output using tkz-tab
|
|
94
|
+
* ddx : dérivée seconde
|
|
95
|
+
* variations : variation table + tex output using tkz-tab
|
|
96
|
+
*/
|
|
97
|
+
export declare class Study {
|
|
98
|
+
fx: StudyableFunction;
|
|
99
|
+
private _asymptotes;
|
|
100
|
+
private _derivative;
|
|
101
|
+
private _signs;
|
|
102
|
+
private _variations;
|
|
103
|
+
private _zeroes;
|
|
104
|
+
private _config;
|
|
105
|
+
private _name;
|
|
106
|
+
constructor(fx: StudyableFunction, config?: StudyConfig | string);
|
|
107
|
+
get name(): string;
|
|
108
|
+
set name(value: string);
|
|
109
|
+
get config(): StudyConfig;
|
|
110
|
+
set config(value: StudyConfig);
|
|
111
|
+
get zeroes(): IZero[];
|
|
112
|
+
get domain(): string;
|
|
113
|
+
get signs(): ITableOfSigns;
|
|
114
|
+
get asymptotes(): IAsymptote[];
|
|
115
|
+
get derivative(): ITableOfSigns;
|
|
116
|
+
get texSigns(): string;
|
|
117
|
+
get texGrows(): string;
|
|
118
|
+
get texVariations(): string;
|
|
119
|
+
makeStudy: () => void;
|
|
120
|
+
indexOfZero: (zeroes: IZero[], zero: IZero | ISolution) => number;
|
|
121
|
+
makeOneLineForSigns: (factor: Polynom, zeroes: IZero[], zeroSign: ZEROTYPE) => string[];
|
|
122
|
+
makeSignsResult: (signs: (string[])[]) => string[];
|
|
123
|
+
makeGrowsResult: (tos: ITableOfSigns) => {
|
|
124
|
+
growsLine: string[];
|
|
125
|
+
extremes: {
|
|
126
|
+
[Key: string]: IExtrema;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
makeVariationsResult: (tos: ITableOfSigns) => {
|
|
130
|
+
varsLine: string[];
|
|
131
|
+
extremes: {
|
|
132
|
+
[Key: string]: IExtrema;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
makeZeroes(): IZero[];
|
|
136
|
+
makeSigns(): ITableOfSigns;
|
|
137
|
+
makeAsymptotes(): IAsymptote[];
|
|
138
|
+
makeDerivative(): ITableOfSigns;
|
|
139
|
+
makeVariation(): ITableOfSigns;
|
|
140
|
+
drawCode: () => string;
|
|
141
|
+
private _makeTexFromTableOfSigns;
|
|
142
|
+
}
|