three.cad/index.html

30 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2021-03-22 02:17:37 +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:56:23 +00:00
<meta property="og:title" content="three.cad" />
2021-05-04 09:33:21 +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:54:21 +00:00
<meta property="og:url" content="https://twpride.github.io/three.cad/" />
2021-05-04 09:23:33 +00:00
<meta property="og:image" content="site_preview.gif" />
2021-03-22 02:17:37 +00:00
<link rel="apple-touch-icon" href="icon-192.png" />
<link rel="manifest" href="manifest.json" />
2021-04-08 04:39:38 +00:00
<link rel="stylesheet" href="app.css">
2021-04-23 10:56:23 +00:00
<title>three.cad</title>
2021-03-22 02:17:37 +00:00
</head>
<body>
2021-04-08 04:39:38 +00:00
<canvas id="c"></canvas>
2021-03-26 19:20:10 +00:00
<div id="react"></div>
2021-04-08 04:39:38 +00:00
<div id="labels"></div>
2021-03-29 02:24:53 +00:00
<div id="stats"></div>
2021-04-08 04:39:38 +00:00
<script src="app.bundle.js"></script>
2021-04-26 07:26:15 +00:00
<script src="scene.bundle.js"></script>
2021-06-03 03:42:06 +00:00
<!-- <script src="solver.js"></script> -->
2021-04-23 23:23:08 +00:00
<script src="gunzip.min.js"></script>
2021-03-22 02:17:37 +00:00
</body>
</html>