three.cad/dist/index.html

48 lines
998 B
HTML
Raw Normal View History

2021-03-26 19:18:11 +00:00
<!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;
}
2021-03-28 12:00:31 +00:00
2021-03-26 19:18:11 +00:00
</style>
</head>
<body>
<div id="react"></div>
<canvas id="c"></canvas>
2021-03-29 02:08:49 +00:00
<div id="stats"></div>
2021-03-28 21:34:55 +00:00
<script src="index.bundle.js"></script>
2021-03-29 02:23:24 +00:00
<script src="renderer.bundle.js"></script>
2021-03-26 19:18:11 +00:00
<script src="solver.js"></script>
2021-03-28 23:25:57 +00:00
<script src="lz-string.min.js"></script>
2021-03-26 19:18:11 +00:00
</body>
</html>