| 123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Workbench</title>
- <style>
- *{margin:0;padding:0;box-sizing:border-box;}
- #canvas{height:100vh;width:100vw;display:block;}
- </style>
- <script type="importmap">
- {
- "imports": {
- "three": "/three.js",
- "orbitControls": "/orbit-controls.js",
- "board": "/objects/board.js"
- }
- }
- </script>
- </head>
- <body>
- <canvas id="canvas"></canvas>
- <script type="module" src="/workbench.js"></script>
- </body>
- </html>
|