FogExp2.js 384 B

12345678910111213141516171819
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. * @author alteredq / http://alteredqualia.com/
  4. */
  5. THREE.FogExp2 = function ( color, density ) {
  6. this.name = '';
  7. this.color = new THREE.Color( color );
  8. this.density = ( density !== undefined ) ? density : 0.00025;
  9. };
  10. THREE.FogExp2.prototype.clone = function () {
  11. return new THREE.FogExp2( this.color.getHex(), this.density );
  12. };