| 1234567891011121314151617181920212223 |
- import * as three from "three-js";
- class factor {
- #mesh;
- constructor(mesh) {
- if (!(mesh instanceof three.Object3D)) {
- throw new TypeError("Must initialize with Object3D.");
- }
- this.#mesh = mesh;
- }
- get mesh() {
- return this.#mesh;
- }
- loop() {
- return null;
- }
- }
- export { factor }
|