-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.88 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
<html lang="en">
<head>
<title>Geometry | Experiments</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<!--
________/\\\\\\\\\_____/\\\\\\\\\_______/\\\\\\\\\______/\\\___________________/\\\\\__________/\\\\\\\\\\\___
_____/\\\////////____/\\\\\\\\\\\\\___/\\\///////\\\___\/\\\_________________/\\\///\\\______/\\\/////////\\\_
___/\\\/____________/\\\/////////\\\_\/\\\_____\/\\\___\/\\\_______________/\\\/__\///\\\___\//\\\______\///__
__/\\\_____________\/\\\_______\/\\\_\/\\\\\\\\\\\/____\/\\\______________/\\\______\//\\\___\////\\\_________
_\/\\\_____________\/\\\\\\\\\\\\\\\_\/\\\//////\\\____\/\\\_____________\/\\\_______\/\\\______\////\\\______
_\//\\\____________\/\\\/////////\\\_\/\\\____\//\\\___\/\\\_____________\//\\\______/\\\__________\////\\\___
__\///\\\__________\/\\\_______\/\\\_\/\\\_____\//\\\__\/\\\______________\///\\\__/\\\_____/\\\______\//\\\__
____\////\\\\\\\\\_\/\\\_______\/\\\_\/\\\______\//\\\_\/\\\\\\\\\\\\\\\____\///\\\\\/_____\///\\\\\\\\\\\/___
_______\/////////__\///________\///__\///________\///__\///////////////_______\/////_________\///////////_____
www.carlos.angon.me / twitter @monster_bo1
-->
<style>
body {
color: #000;
font-family: Monospace;
font-size: 13px;
text-align: center;
font-weight: bold;
background-color: #ffffff;
margin: 0px;
overflow: hidden;
}
</style>
<script src="js/three.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/OBJLoader.js"></script>
<script src="js/Detector.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<div id="container"></div>
</body>
</html>