29 lines
635 B
HTML
29 lines
635 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Implicit CAD snapshot render</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"gifenc": "/node_modules/gifenc/dist/gifenc.esm.js",
|
|
"three": "/node_modules/three/build/three.module.js"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module" src="/src/common/implicitHeadlessRenderEntry.js"></script>
|
|
</body>
|
|
</html>
|