web3d / node_modules /three /src /lights /RectAreaLight.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
314 Bytes
import { Light } from './Light';
import { Color } from './../math/Color';
export class RectAreaLight extends Light {
constructor(
color?: Color | string | number,
intensity?: number,
width?: number,
height?: number
);
type: string;
width: number;
height: number;
intensity: number;
}