2
0

Line2.js 842 B

123456789101112131415161718192021222324
  1. console.warn( "THREE.Line2: As part of the transition to ES6 Modules, the files in 'examples/js' were deprecated in May 2020 (r117) and will be deleted in December 2020 (r124). You can find more information about developing using ES6 Modules in https://threejs.org/docs/index.html#manual/en/introduction/Import-via-modules." );
  2. /**
  3. * @author WestLangley / http://github.com/WestLangley
  4. *
  5. */
  6. THREE.Line2 = function ( geometry, material ) {
  7. THREE.LineSegments2.call( this );
  8. this.type = 'Line2';
  9. this.geometry = geometry !== undefined ? geometry : new THREE.LineGeometry();
  10. this.material = material !== undefined ? material : new THREE.LineMaterial( { color: Math.random() * 0xffffff } );
  11. };
  12. THREE.Line2.prototype = Object.assign( Object.create( THREE.LineSegments2.prototype ), {
  13. constructor: THREE.Line2,
  14. isLine2: true
  15. } );