/** * @author alteredq / http://alteredqualia.com/ * * parameters = { * color: , * opacity: , * * blending: THREE.NormalBlending, * depthTest: , * depthWrite: , * * linewidth: , * * scale: , * dashSize: , * gapSize: , * * vertexColors: * * fog: * } */ THREE.LineDashedMaterial = function ( parameters ) { THREE.Material.call( this ); this.type = 'LineDashedMaterial'; this.color = new THREE.Color( 0xffffff ); this.linewidth = 1; this.scale = 1; this.dashSize = 3; this.gapSize = 1; this.vertexColors = false; this.fog = true; this.setValues( parameters ); }; THREE.LineDashedMaterial.prototype = Object.create( THREE.Material.prototype ); THREE.LineDashedMaterial.prototype.constructor = THREE.LineDashedMaterial; THREE.LineBasicMaterial.prototype.copy = function ( source ) { THREE.Material.prototype.copy.call( this, source ); this.color.copy( source.color ); this.linewidth = source.linewidth; this.scale = source.scale; this.dashSize = source.dashSize; this.gapSize = source.gapSize; this.vertexColors = source.vertexColors; this.fog = source.fog; return this; };