Vom Anderen PC aus hoch gespielt

This commit is contained in:
ChK
2026-02-01 13:40:05 +01:00
commit 60b1b7591c
1088 changed files with 452896 additions and 0 deletions

30
public/index.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>3D Viewer</title>
<style>
body { margin: 0; }
#topMain, #c {
width: 100%;
height: 100%;
}
</style>
<script type="importmap">
{
"imports": {
"three": "../node_modules/three/build/three.module.js",
"three/addons/": "../node_modules/three/examples/jsm/"
}
}
</script>
<script src="Robot.js"></script>
<script src="WebService.js" defer></script>
</head>
<body>
<div id="topMain">
<canvas id="c"></canvas>
<script type="module" src="Visualize.js"></script>
</div>
</body>
</html>