1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| /**
| * @author WestLangley / http://github.com/WestLangley
| *
| */
|
| THREE.Line2 = function ( geometry, material ) {
|
| THREE.LineSegments2.call( this );
|
| this.type = 'Line2';
|
| this.geometry = geometry !== undefined ? geometry : new THREE.LineGeometry();
| this.material = material !== undefined ? material : new THREE.LineMaterial( { color: Math.random() * 0xffffff } );
|
| };
|
| THREE.Line2.prototype = Object.assign( Object.create( THREE.LineSegments2.prototype ), {
|
| constructor: THREE.Line2,
|
| isLine2: true,
|
| copy: function ( /* source */ ) {
|
| // todo
|
| return this;
|
| }
|
| } );
|
|