index.html 859 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <title>Page Title</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1" />
  8. <style>
  9. *{
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. }
  14. html, body {
  15. width: 100%;
  16. height: 100%;
  17. overflow: hidden;
  18. background-color: rgba(0, 0, 0, 0.5)
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <canvas id="myCanvas" width="700" height="700" >
  24. Your browser does not support the HTML5 canvas tag.
  25. </canvas>
  26. <script src="js/CAD.js"></script>
  27. <script src="model/data.js"></script>
  28. <script>
  29. var $canvas = document.getElementById("myCanvas")
  30. var cad = grendCAD($canvas, wallData, wallCamera)
  31. cad.position({ x: -5.1421212121212125, y: -4.539151515151516 }, 5)
  32. </script>
  33. </body>
  34. </html>