UNPKG

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