-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 1.38 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
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>uv mapping</title>
<style type="text/css">
body {
margin: 0;
padding: 20px;
}
canvas {
background-color: #e9e9e9;
border: 1px solid #ccc;
}
#controls {
width: 580px;
padding: 10px;
text-align: center;
}
#btn {
height: 80px;
width: 80px;
border-radius: 50px;
cursor: pointer;
}
.none {
display: none;
}
</style>
</head>
<body>
<canvas id="canvas" width="600" height="600">
canvas not supported
</canvas>
<div id="controls">
<button id="btn">ROTATE</button>
</div>
<script type="text/javascript" src="./sources/Matrix.js"></script>
<script type="text/javascript" src="./sources/Vector.js"></script>
<script type="text/javascript" src="./sources/Graphics.js"></script>
<script type="text/javascript" src="./sources/Element.js"></script>
<script type="text/javascript" src="./sources/Modeller.js"></script>
<script type="text/javascript" src="./sources/Mapper.js"></script>
<script type="text/javascript" src="./sources/Controller.js"></script>
<script type="text/javascript">
var the = new Controller();
</script>
</body>
</html>