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