forked from va3c/viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrevit2.html
28 lines (26 loc) · 1.11 KB
/
revit2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>VA3C Viewer</title>
<link rel="stylesheet" href="css/stylesheet.min.css"/>
</head>
<body>
<section class="vA3C" data-json-url="./models/va3c.json">
<div class="output"></div>
<div class="attributeList"></div>
<div class="stats"></div>
</section>
<script defer src="node_modules/jquery/dist/jquery.min.js"></script>
<script defer src="node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script defer src="node_modules/jquery-ui-dist/jquery-ui.min.js"></script>
<script defer src="node_modules/dat.gui/build/dat.gui.js"></script>
<script defer src="node_modules/three/build/three.min.js"></script>
<script defer src="node_modules/three/examples/js/renderers/Projector.js"></script>
<script defer src="node_modules/three/examples/js/controls/OrbitControls.js"></script>
<script defer src="node_modules/stats.js/build/stats.min.js"></script>
<!-- Application files -->
<script defer src="js/VA3C_APP.js"></script>
<script defer src="js/APP_INIT.js"></script>
</body>
</html>