-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
42 lines (38 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TARS.js</title>
<style>
html,
body {
padding: 0;
margin: 0;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
display : flex;
flex-direction: column;
flex-wrap: wrap;
max-height: 600px;
align-items: flex-start;
}
button {
margin: .5em;
}
</style>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js"></script>
<script src="circuits.js"></script>
<script src="sketch.js"></script>
<script src="wall.js"></script>
<script src="car.js"></script>
<script src="brain.js"></script>
<script src="ray.js"></script>
</body>
</html>