yzt
2023-05-05 4c558c77a6a9d23f057f094c4dc3e315eabef497
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
import Color from "../Core/Color.js";
import defaultValue from "../Core/defaultValue.js";
 
/**
 * A directional light source that originates from the Sun.
 *
 * @param {Object} [options] Object with the following properties:
 * @param {Color} [options.color=Color.WHITE] The light's color.
 * @param {Number} [options.intensity=2.0] The light's intensity.
 *
 * @alias SunLight
 * @constructor
 */
function SunLight(options) {
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
  /**
   * The color of the light.
   * @type {Color}
   * @default Color.WHITE
   */
  this.color = Color.clone(defaultValue(options.color, Color.WHITE));
 
  /**
   * The intensity of the light.
   * @type {Number}
   * @default 2.0
   */
  this.intensity = defaultValue(options.intensity, 2.0);
}
 
export default SunLight;