threepipe
Version:
A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.
13 lines • 483 B
JavaScript
import { BufferGeometry } from 'three';
import { iGeometryCommons } from './iGeometryCommons';
export class BufferGeometry2 extends BufferGeometry {
constructor() {
super();
this.center2 = iGeometryCommons.center2;
this.setDirty = iGeometryCommons.setDirty;
this.refreshUi = iGeometryCommons.refreshUi;
this.appliedMeshes = new Set();
iGeometryCommons.upgradeGeometry.call(this);
}
}
//# sourceMappingURL=BufferGeometry2.js.map