three.fbo-helper
Version:
FrameBuffer Object inspector for three.js
25 lines (13 loc) • 361 B
JavaScript
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 };