Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

23 lines
698 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="./../geometry.js"></script>
<script src="./code.js"></script>
</head>
<body>
<select id="id_mode" onchange="javascript: onchangemode(this.value);">
<option>union</option>
<option>intersect</option>
<option>xor</option>
<option>difference</option>
<option>differenceRev</option>
</select>
<canvas id="sources" style="position: absolute; left: 0px; top: 50px; width: 500px; height: 500px;" width="500" height="500" style="background:#000000;"></canvas>
<canvas id="result" style="position: absolute; left: 600px; top: 50px; width: 500px; height: 500px;" width="500" height="500" style="background:#000000;"></canvas>
</body>
</html>