LineSegments.js 318 B

1234567891011121314
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. THREE.LineSegments = function ( geometry, material ) {
  5. THREE.Line.call( this, geometry, material );
  6. this.type = 'LineSegments';
  7. };
  8. THREE.LineSegments.prototype = Object.create( THREE.Line.prototype );
  9. THREE.LineSegments.prototype.constructor = THREE.LineSegments;
粤ICP备19079148号