UNPKG

three

Version:

JavaScript 3D library

19 lines (11 loc) 357 B
( function () { class WireframeGeometry2 extends THREE.LineSegmentsGeometry { constructor( geometry ) { super(); this.isWireframeGeometry2 = true; this.type = 'WireframeGeometry2'; this.fromWireframeGeometry( new THREE.WireframeGeometry( geometry ) ); // set colors, maybe } } THREE.WireframeGeometry2 = WireframeGeometry2; } )();