-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclickWriteSpatialdemo.html
More file actions
61 lines (61 loc) · 1.92 KB
/
clickWriteSpatialdemo.html
File metadata and controls
61 lines (61 loc) · 1.92 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>clickWrite demo - raisonnenment spatial</title>
<link rel="stylesheet" href="css/styles.css" type="text/css" media="screen" />
<script src = "js/webgl/scenejs.js" type = "text/javascript"></script>
<script src = "js/utils.js" type = "text/javascript"></script>
<!--<script src = "js/array.js" type = "text/javascript"></script> -->
<script src = "js/gameSpatialTest.js" type = "text/javascript"></script>
<script src = "js/game.js" type = "text/javascript"></script>
<script src = "js/scene.js" type = "text/javascript"></script>
<script src = "js/scene3d.js" type = "text/javascript"></script>
<script src = "js/menu.js" type = "text/javascript"></script>
</head>
<body>
<!-- #wrapper -->
<div id="wrapper">
<!-- header -->
<header>
<!-- header title -->
<h1>Raisonnement spatial avec sémantique procédurale en webGL.</h1>
</header>
<!-- main content -->
<section id="main">
<!-- container -->
<section id="container">
<!-- content -->
<section id="content">
<!-- 3d -->
<canvas id="canvas3d" style="border: none" width="800" height="600"></canvas>
<!-- action -->
<div id="actionbox">
<ul id="action1" class="actionStyle"></ul>
</div>
<div id="actionbox">
<ul id="action2" class="actionStyle"></ul>
</div>
<div id="actionbox">
<ul id="action3" class="actionStyle"></ul>
</div>
<div id="actionbox">
<ul id="action4" class="actionStyle"></ul>
</div>
<div id="actionbox">
<ul id="action5" class="actionStyle"></ul>
</div>
<div id="actionbox">
<ul id="action6" class="actionStyle"></ul>
</div>
</section>
</section>
<!-- script -->
<script>
var game = testGame();
createScene(game);
</script>
</section>
</div>
</body>
</html>