web3d / node_modules /three /src /lights /LightShadow.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
467 Bytes
import { Camera } from './../cameras/Camera';
import { Vector2 } from './../math/Vector2';
import { Matrix4 } from './../math/Matrix4';
import { RenderTarget } from '../renderers/webgl/WebGLRenderLists';
export class LightShadow {
constructor(camera: Camera);
camera: Camera;
bias: number;
radius: number;
mapSize: Vector2;
map: RenderTarget;
matrix: Matrix4;
copy(source: LightShadow): this;
clone(recursive?: boolean): this;
toJSON(): any;
}