-
Notifications
You must be signed in to change notification settings - Fork 0
/
expression.js
137 lines (108 loc) · 3.82 KB
/
expression.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
Fōrmulæ complex arithmetic package. Module for expression definition & visualization.
Copyright (C) 2015-2025 Laurence R. Ugalde
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
'use strict';
export class Complex extends Formulae.ExpressionPackage {};
Complex.conjugateStyle = 0; // 0: x* 1: upper line
Complex.Conjugate = class extends Expression.SuperscriptedLiteral {
getTag() {
return "Math.Complex.Conjugate";
}
getLiteral() {
return "*";
}
getName() {
return Complex.messages.nameConjugate;
}
prepareDisplay(context) {
if (Complex.conjugateStyle == 0) {
super.prepareDisplay(context);
}
else {
let child = this.children[0];
child.prepareDisplay(context);
this.width = child.width;
this.height = 4 + child.height;
this.horzBaseline = 4 + child.horzBaseline;
this.vertBaseline = child.vertBaseline;
child.x = 0;
child.y = 4;
}
}
display(context, x, y) {
if (Complex.conjugateStyle == 0) {
super.display(context, x, y);
}
else {
let child = this.children[0];
child.display(context, x + child.x, y + child.y);
context.beginPath();
context.moveTo(x, y + 0.0); context.lineTo(x + this.width, y + 0.0); // preventing obfuscation
context.stroke();
}
}
}
Complex.setExpressions = function(module) {
Formulae.setExpression(module, "Math.Complex.Conjugate", Complex.Conjugate);
// literals
[
[ "Math.Complex", "Imaginary", "ℹ" ]
].forEach(row =>
Formulae.setExpression(module, row[0] + "." + row[1], {
clazz: Expression.Literal,
getTag: () => row[0] + "." + row[1],
getLiteral: () => row[2],
getName: () => Complex.messages["name" + row[1]],
}
));
// superscripted literals
/*
Formulae.setExpression(module, "Math.Complex.Conjugate", {
clazz: Expression.SuperscriptedLiteral,
getTag: () => "Math.Complex.Conjugate",
getLiteral: () => "*",
getName: () => Complex.messages.nameConjugate
})
*/;
};
Complex.isConfigurable = () => true;
Complex.onConfiguration = () => {
let table = document.createElement("table");
table.classList.add("bordered");
let row = table.insertRow();
let th = document.createElement("th"); th.setAttribute("colspan", "2"); th.appendChild(document.createTextNode(Complex.messages.labelComplex)); row.appendChild(th);
row = table.insertRow();
let col = row.insertCell();
col.appendChild(document.createTextNode(Complex.messages.labelConjugateStyle));
col = row.insertCell();
let radio = document.createElement("input"); radio.type = "radio"; radio.addEventListener("click", () => Complex.onChangeConjugateStyle(0));
col.appendChild(radio);
let span = document.createElement("span");
span.innerHTML = "x<sup>*</sup>";
col.appendChild(span);
col.appendChild(document.createElement("br"));
col.appendChild(document.createElement("br"));
radio = document.createElement("input"); radio.type = "radio"; radio.addEventListener("click", () => Complex.onChangeConjugateStyle(1));
col.appendChild(radio);
span = document.createElement("span");
span.style = "text-decoration: overline;";
span.innerHTML = "x";
col.appendChild(span);
Formulae.setModal(table);
};
Complex.onChangeConjugateStyle = function(pos) {
Formulae.resetModal();
Complex.conjugateStyle = pos;
Formulae.refreshHandlers();
};