comparison Sources/viewer.html @ 0:4e889a8e8be2

initial commit of the viewer plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Jul 2023 19:15:27 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4e889a8e8be2
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>Orthanc STL viewer</title>
6 <style>
7 body { margin: 0; }
8 </style>
9 </head>
10 <body>
11 <script async src="es-module-shims.js"></script>
12
13 <script type="importmap">
14 {
15 "imports": {
16 "three": "./three.module.min.js"
17 }
18 }
19 </script>
20
21 <script type="module" src="./viewer.js"></script>
22 </body>
23 </html>