Merge branch 'set-algebra'

This commit is contained in:
Shchoholiev 2021-12-03 10:27:47 +02:00
commit fad7e9eb9a
6 changed files with 11 additions and 0 deletions

BIN
Set-Algebra/Complement.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
Set-Algebra/Union.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -303,21 +303,26 @@ function printStep(operation, firstSet, secondSet, result) {
step++; step++;
let str = ''; let str = '';
let img = "";
switch (operation) { switch (operation) {
case '!': case '!':
str = `!${setToString(firstSet)} = ${setToString(result)}`; str = `!${setToString(firstSet)} = ${setToString(result)}`;
img = "Complement.png";
break; break;
case '/': case '/':
str = `${setToString(firstSet)} / ${setToString(secondSet)} = ${setToString(result)}`; str = `${setToString(firstSet)} / ${setToString(secondSet)} = ${setToString(result)}`;
img = "Intersection.png";
break; break;
case '+': case '+':
str = `${setToString(firstSet)} + ${setToString(secondSet)} = ${setToString(result)}`; str = `${setToString(firstSet)} + ${setToString(secondSet)} = ${setToString(result)}`;
img = "Union.png";
break; break;
case '-': case '-':
str = `${setToString(firstSet)} - ${setToString(secondSet)} = ${setToString(result)}`; str = `${setToString(firstSet)} - ${setToString(secondSet)} = ${setToString(result)}`;
img = "Substraction.png";
break; break;
default: default:
@ -328,6 +333,7 @@ function printStep(operation, firstSet, secondSet, result) {
steps.insertAdjacentHTML('beforeend', ` <div class="input-wrap"> steps.insertAdjacentHTML('beforeend', ` <div class="input-wrap">
<h1 class="text">${step}. </h1> <h1 class="text">${step}. </h1>
<div class="input"><input type="result" value="${str}" readonly/></div> <div class="input"><input type="result" value="${str}" readonly/></div>
<img src="${img}">
</div>`); </div>`);
} }

View File

@ -329,6 +329,11 @@ input[type=result] {
display: none; display: none;
} }
.input-wrap img {
margin: auto 10px;
height: 50px;
}
/* ------------------Main-------------- */ /* ------------------Main-------------- */