lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines • 329 B
JavaScript
import { OctahedronGeometry } from "three";
import Primitive from "../core/Primitive";
const geometry = new OctahedronGeometry(0.5);
class Octahedron extends Primitive {
static componentName = "octahedron";
constructor() {
super(geometry);
}
}
export default Octahedron;
//# sourceMappingURL=Octahedron.js.map