| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- THREE.Line = function ( geometry, material, type ) {
- THREE.Object3D.call( this );
- this.geometry = geometry;
- this.material = ( material !== undefined ) ? material : new THREE.LineBasicMaterial( { color: Math.random() * 0xffffff } );
- this.type = ( type !== undefined ) ? type : THREE.LineStrip;
- if ( this.geometry ) {
- if ( ! this.geometry.boundingSphere ) {
- this.geometry.computeBoundingSphere();
- }
- }
- };
- THREE.LineStrip = 0;
- THREE.LinePieces = 1;
- THREE.Line.prototype = Object.create( THREE.Object3D.prototype );
- THREE.Line.prototype.clone = function ( object ) {
- if ( object === undefined ) object = new THREE.Line( this.geometry, this.material, this.type );
- THREE.Object3D.prototype.clone.call( this, object );
- return object;
- };
|