-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.4 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.4 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="./libs/p5.js"></script>
<script src="./libs/math.min.js"></script>
<script src="./js/helpers.js"></script>
<script src="./js/basis.js"></script>
<script src="./js/locus.js"></script>
<script src="./js/lines.js"></script>
<script src="./js/clickable.js"></script>
<script src="sketch.js"></script>
<link rel="stylesheet" href="style.css"/>
<title>Analytical Geometry</title>
</head>
<body>
<ol id="controls"></ol>
<div class="equation-container">
<svg id="equation-info" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-2.033 16.01c.564-1.789 1.632-3.932 1.821-4.474.273-.787-.211-1.136-1.74.209l-.34-.64c1.744-1.897 5.335-2.326 4.113.613-.763 1.835-1.309 3.074-1.621 4.03-.455 1.393.694.828 1.819-.211.153.25.203.331.356.619-2.498 2.378-5.271 2.588-4.408-.146zm4.742-8.169c-.532.453-1.32.443-1.761-.022-.441-.465-.367-1.208.164-1.661.532-.453 1.32-.442 1.761.022.439.466.367 1.209-.164 1.661z"/></svg>
<p id="equation"></p>
</div>
<div class="modal" id="info-modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2>Informações Adicionais</h2>
</div>
<div class="modal-body"></div>
</div>
</div>
</body>
</html>