three.cad/dist/index.html

30 lines
1.0 KiB
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" />
2021-04-23 10:54:55 +00:00
<meta property="og:title" content="three.cad" />
2021-05-04 09:32:58 +00:00
<meta property="og:description" content="3D modelling software built using Three.js, React, and Web Assembly. Features parametric sketching and constructive solid geometry (CSG) capabilities." />
2021-05-04 04:53:50 +00:00
<meta property="og:url" content="https://twpride.github.io/three.cad/" />
2021-05-04 09:23:03 +00:00
<meta property="og:image" content="site_preview.gif" />
2021-03-26 19:18:11 +00:00
<link rel="apple-touch-icon" href="icon-192.png" />
<link rel="manifest" href="manifest.json" />
2021-04-07 22:50:53 +00:00
<link rel="stylesheet" href="app.css">
2021-04-23 10:54:55 +00:00
<title>three.cad</title>
2021-03-26 19:18:11 +00:00
</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-04-26 07:25:47 +00:00
<script src="scene.bundle.js"></script>
2021-03-26 19:18:11 +00:00
<script src="solver.js"></script>
2021-04-23 23:22:33 +00:00
<script src="gunzip.min.js"></script>
2021-03-26 19:18:11 +00:00
</body>
</html>