-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.11 KB
/
index.html
File metadata and controls
43 lines (36 loc) · 1.11 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
<html>
<head>
<title>Formula Student Autonomous Simulator - Sjoerd Groot</title>
<!-- <script src="p5.min.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/p5@1.5.0/lib/p5.min.js"></script>
<script src="globals.js"></script>
<script src="cone.js"></script>
<script src="coneMap.js"></script>
<script src="carModel.js"></script>
<script src="autonomousController.js"></script>
<script src="manualController.js"></script>
<!-- <script src="skidpadPredictor.js"></script> -->
<script src="ui.js"></script>
<script src="worldManager.js"></script>
<script src="controllerOptimizer.js"></script>
<script src="sketch.js"></script>
<style>
body{
margin: 0;
}
</style>
</head>
<body>
<div id="sketch-holder"></div>
</body>
<script>
(function () {
var blockContextMenu, myElement;
blockContextMenu = function (evt) {
evt.preventDefault();
};
myElement = document.getElementById("sketch-holder");
myElement.addEventListener('contextmenu', blockContextMenu);
})();
</script>
</html>