52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="favicon.ico" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<meta property="og:title" content="CAD Tool" />
|
|
<meta property="og:description" content="Three.js CAD tool" />
|
|
<meta property="og:url" content="" />
|
|
<meta property="og:image" content="" />
|
|
|
|
<link rel="apple-touch-icon" href="icon-192.png" />
|
|
<link rel="manifest" href="manifest.json" />
|
|
<title>CAD Tool</title>
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
#c {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="react"></div>
|
|
<canvas id="c"></canvas>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux/4.0.0-beta.1/redux.js" integrity="sha512-a18iH5k0MJdFLaOvN1STjT2wNpH4tjIKSuWXZOZ7nWxkMydoMGZCkQ88Ch/RnAVzVVNVfhl3dxyg5UKABKhr0Q==" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux-logger/4.0.0/redux-logger.js" integrity="sha512-desjPFOQxT8YLUME+WMxNB5xmoyi8d/h+XG8Pgv+d/vIpy2Phw1uVyZYl4VUN+/Vvv2Z9hGHhx1StlZRW5Sx5w==" crossorigin="anonymous"></script>
|
|
<script src="redux.js"></script>
|
|
<script src="renderer.bundle.js"></script>
|
|
<script src="index.bundle.js"></script>
|
|
<script src="solver.js"></script>
|
|
<!-- <script src="lz-string.min.js"></script> -->
|
|
<script src="lz-string.js"></script>
|
|
<div id="stats"></div>
|
|
</body>
|
|
|
|
</html> |