13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
|
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 })
|
||
|
);
|
||
|
}
|
||
|
}
|