import { Element } from "./Element.js"; export class Cube extends Element { constructor() { super(); this.data = new THREE.Mesh( new THREE.BoxGeometry(1, 1, 1), new THREE.MeshBasicMaterial({ color: 0x00ff00 }) ); } }