| 123456789101112131415161718192021222324 |
- import { Line } from './Line';
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- function LineSegments( geometry, material ) {
- Line.call( this, geometry, material );
- this.type = 'LineSegments';
- }
- LineSegments.prototype = Object.assign( Object.create( Line.prototype ), {
- constructor: LineSegments,
- isLineSegments: true
- } );
- export { LineSegments };
|