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 • 554 B
JavaScript
import { WireframeGeometry2 } from 'three/examples/jsm/lines/WireframeGeometry2.js';
import { iGeometryCommons } from './iGeometryCommons';
export class WireframeGeometry3 extends WireframeGeometry2 {
constructor(geometry) {
super(geometry);
this.center2 = iGeometryCommons.center2;
this.setDirty = iGeometryCommons.setDirty;
this.refreshUi = iGeometryCommons.refreshUi;
this.appliedMeshes = new Set();
iGeometryCommons.upgradeGeometry.call(this);
}
}
//# sourceMappingURL=WireframeGeometry3.js.map