-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (36 loc) · 1.54 KB
/
index.html
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
46
47
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Concave mirror</title>
<style> body {padding: 0; margin: 0;} </style>
<script src="p5.min.js"></script>
<script src="p5.dom.min.js"></script>
<!-- <script src="../addons/p5.sound.min.js"></script> -->
<!-- <script src="../addons/matter.js"></script> -->
<script src="sketch.js"></script>
<script src="object.js"></script>
<script src="image.js"></script>
<script src="mirror.js"></script>
<script src="ray.js"></script>
</head>
<body>
<h1 id="title" style="font-size: 2.7rem;">SPHERICAL MIRROR</h1>
<h3 id="subt" style="font-size: 2.5rem;">Sandbox</h3>
<h4 id="subsubt" style="font-size: 1.5rem;">| made by Shounak Ghosh</h4>
<!-- <canvas width="800" height="400" id="myCanvas">
-->
<label id="fll"></label>
<!-- <input type="range" position="relative" padding="10px" class="slider" id="flSlider" min="-100" max="100" value="-100" step="1"> -->
<label id="scl"></label>
<!-- <input type="range" position="relative" padding="10px" class="slider" id="scSlider" min="0" max="4" value="1" step="0.01"> -->
<label id="mrinfo"></label>
<label id="obhl"></label>
<label id="imhl"></label>
<label id="ud"></label>
<label id="vd"></label>
<label id="a"></label>
<label id="pole" style="color: blue;"></label> <label id="f" style="color: red;"></label> <label id="cc" style="color: green"></label>
</body>
</html>