three.cad/dist/index.html

31 lines
948 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" />
2021-04-07 22:50:53 +00:00
<!-- app.css references the css imported into app.jsx -->
<link rel="stylesheet" href="app.css">
2021-03-26 19:18:11 +00:00
<title>CAD Tool</title>
</head>
<body>
2021-04-02 00:19:14 +00:00
<canvas id="c"></canvas>
2021-04-05 03:52:17 +00:00
<div id="react"></div>
<div id="labels"></div>
2021-03-29 02:08:49 +00:00
<div id="stats"></div>
2021-04-07 04:21:09 +00:00
<script src="app.bundle.js"></script>
2021-03-30 23:20:24 +00:00
<script src="scene.bundle.js"></script>
2021-03-26 19:18:11 +00:00
<script src="solver.js"></script>
2021-04-18 19:14:01 +00:00
<script src="fs-helpers.js"></script>
2021-03-26 19:18:11 +00:00
</body>
</html>