Line2.js 847 B

123456789101112131415161718192021222324
  1. console.warn( "THREE.Line2: As part of the transition to ES6 Modules, the files in 'examples/js' have been deprecated in r117 (May 2020) and will be deleted in r124 (December 2020). 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. } );