Research-Stack/3-Mathematical-Models/bezier-kit/examples/threejs-tube/index.html

26 lines
611 B
HTML

<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bezier-kit: threejs-tube</title>
<style>
body {
margin: 0;
height: 100vh;
background: #0b0d12;
color: #eaeaea;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#root,
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>