You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
545 B
33 lines
545 B
/**
|
|
* @author WestLangley / http://github.com/WestLangley
|
|
*
|
|
*/
|
|
|
|
THREE.WireframeGeometry2 = function ( geometry ) {
|
|
|
|
THREE.LineSegmentsGeometry.call( this );
|
|
|
|
this.type = 'WireframeGeometry2';
|
|
|
|
this.fromWireframeGeometry( new THREE.WireframeGeometry( geometry ) );
|
|
|
|
// set colors, maybe
|
|
|
|
};
|
|
|
|
THREE.WireframeGeometry2.prototype = Object.assign( Object.create( THREE.LineSegmentsGeometry.prototype ), {
|
|
|
|
constructor: THREE.WireframeGeometry2,
|
|
|
|
isWireframeGeometry2: true,
|
|
|
|
copy: function ( source ) {
|
|
|
|
// todo
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
} );
|