/** * @author mr.doob / http://mrdoob.com/ * @author alteredq / http://alteredqualia.com/ */ THREE.FogExp2 = function ( hex, density ) { this.color = new THREE.Color( hex ); this.density = ( density !== undefined ) ? density : 0.00025; };