UNPKG

threepipe

Version:

A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.

13 lines 483 B
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