bvs/html/index3D.html

46 lines
1.3 KiB
HTML
Raw Normal View History

2023-03-03 10:56:59 +01:00
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<meta charset="utf-8">
<style>
body{
margin:0;
padding:0;
overflow:hidden;
}
</style>
<title>User study version 3D</title>
</head>
2023-03-04 16:49:50 +01:00
<body>
<div class = "canvas">
<canvas id="canvas" width="1920" height="1080">
Votre navigateur ne supporte pas les canvas, essayez-en un autre.
</canvas>
</div>
2023-03-03 10:56:59 +01:00
<script src="/static/three.js"></script>
<script src="/static/LoaderSupport.js"></script>
<script src="/static/OBJLoader2.js"></script>
<script src="/static/OrbitControls.js"></script>
2023-03-04 16:49:50 +01:00
<script src="/static/fonctions_utiles.js"></script>
<script src="/static/fonctions_clavier.js"></script>
2023-03-04 17:17:07 +01:00
<script src="/static/fonctions_contexte.js"></script>
2023-03-03 10:56:59 +01:00
<script src="/static/fonctions_choix_vues.js"></script>
2023-03-04 16:49:50 +01:00
<script src="/static/fonctions_inscription.js"></script>
2023-03-06 16:02:20 +01:00
<script src="/static/fonctions_explications.js"></script>
<script src="/static/fonctions_analyse.js"></script>
2023-03-04 16:49:50 +01:00
<script src="/static/fonctions_fin.js"></script>
<script src="/static/MAIN.js"></script>
2023-03-03 10:56:59 +01:00
2023-03-04 16:49:50 +01:00
2023-03-03 10:56:59 +01:00
</body>
</html>