File size: 375 Bytes
6cd9596
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { RectAreaLight } from './../lights/RectAreaLight';
import { Color } from './../math/Color';
//import { Matrix4 } from './../math/Matrix4';
//import { Object3D } from './../core/Object3D';

export class RectAreaLightHelper {
  constructor(light: RectAreaLight, color?: Color | string | number);

  light: RectAreaLight;
  color: Color | string | number | undefined;
}