30 lines
804 B
HTML
30 lines
804 B
HTML
<!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> |