Poliedro -

<!-- Import Three.js core and add-ons --> <script type="importmap"> "imports": "three": "https://unpkg.com/three@0.128.0/build/three.module.js", "three/addons/": "https://unpkg.com/three@0.128.0/examples/jsm/" </script>

<script type="module"> import * as THREE from 'three'; import OrbitControls from 'three/addons/controls/OrbitControls.js'; import CSS2DRenderer, CSS2DObject from 'three/addons/renderers/CSS2DRenderer.js'; poliedro

// Camera: perspective const camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 1000); camera.position.set(3, 2, 5); camera.lookAt(0, 0, 0); import * as THREE from 'three'