added venn diagram

This commit is contained in:
Shchoholiev 2021-12-03 10:24:52 +02:00
parent 96f2b20a82
commit 8cdd67409c
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++;
let str = '';
let img = "";
switch (operation) {
case '!':
str = `!${setToString(firstSet)} = ${setToString(result)}`;
img = "Complement.png";
break;
case '/':
str = `${setToString(firstSet)} / ${setToString(secondSet)} = ${setToString(result)}`;
img = "Intersection.png";
break;
case '+':
str = `${setToString(firstSet)} + ${setToString(secondSet)} = ${setToString(result)}`;
img = "Union.png";
break;
case '-':
str = `${setToString(firstSet)} - ${setToString(secondSet)} = ${setToString(result)}`;
img = "Substraction.png";
break;
default:
@ -328,6 +333,7 @@ function printStep(operation, firstSet, secondSet, result) {
steps.insertAdjacentHTML('beforeend', ` <div class="input-wrap">
<h1 class="text">${step}. </h1>
<div class="input"><input type="result" value="${str}" readonly/></div>
<img src="${img}">
</div>`);
}

View File

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