-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.77 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.77 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
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="resources/fcai-logo.png">
<link rel="stylesheet" href="css/global.css">
<script src="js/external/plotly-2.8.3.min.js" defer></script>
<script src="js/helpers/util.js" defer></script>
<script src="js/helpers/math_util.js" defer></script>
<script src="js/classes/line_plane_areas.js" defer></script>
<script src="js/classes/plotter.js" defer></script>
<script src="js/index.js" defer></script>
<title>Solid Geometry Tools</title>
</head>
<body>
<img class="logo" src="resources/fcai-logo.png">
<img class="logo" src="resources/cu-logo.png">
<h1>Solid Geometry Tools</h1>
<div class="control-buttons">
<button id="plane-add-button" class="primary-button">Add a plane</button>
<button id="plane-remove-button" class="primary-button">Remove a plane</button>
<button id="draw-button" class="primary-button">Draw</button>
<button id="clear-button" class="primary-button">Clear</button>
</div>
<div id="line-input" class="input-data"></div>
<div id="plane-input" class="input-data"></div>
<p>
<strong>Note</strong>: the drawn planes extend from negative infinity to infinity but were bounded.<br />
<strong>Hint</strong>: use the mouse and the control tools to move along the graph and zoom.
</p>
<div id="plotly-canvas"></div>
<div class="footer">
<h3>Created by</h3>
<p>Omar Adel Abdel Hamid Ahmed Brikaa - 20206043 - 19</p>
<h3>Under the supervision of</h3>
<p>Dr. Eng. Mostafa Reda A. El Tantawi</p>
</div>
</body>
</html>