123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <style>
- *{
- margin: 0;
- padding: 0;
- border: 0;
- }
- html, body {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- #myCanvas {
- position: absolute;
- left: 100px;
- top: 100px;
- width: 400px;
- height: 400px;
- }
- </style>
- </head>
- <body>
- <canvas id="myCanvas" width="700" height="700" >
- Your browser does not support the HTML5 canvas tag.
- </canvas>
- <script src="js/CAD.js"></script>
- <script src="model/data.js"></script>
- <script>
- var $canvas = document.getElementById("myCanvas")
- // $canvas.setAttribute('width', window.innerWidth)
- // $canvas.setAttribute('height', window.innerHeight)
- // $canvas.style.width = window.innerWidth + 'px'
- // $canvas.style.height = window.innerHeight + 'px'
- var wall = grendCAD($canvas, wallData, wallCamera)
- </script>
- </body>
- </html>
|