| 1234567891011121314 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- THREE.LineSegments = function ( geometry, material ) {
- THREE.Line.call( this, geometry, material );
- this.type = 'LineSegments';
- };
- THREE.LineSegments.prototype = Object.create( THREE.Line.prototype );
- THREE.LineSegments.prototype.constructor = THREE.LineSegments;
|