DirectionalLightHelper.d.ts 588 B

12345678910111213141516171819202122232425
  1. import { DirectionalLight } from './../lights/DirectionalLight';
  2. import { Color } from './../math/Color';
  3. import { Line } from './../objects/Line';
  4. import { Matrix4 } from './../math/Matrix4';
  5. import { Object3D } from './../core/Object3D';
  6. export class DirectionalLightHelper extends Object3D {
  7. constructor(
  8. light: DirectionalLight,
  9. size?: number,
  10. color?: Color | string | number
  11. );
  12. light: DirectionalLight;
  13. lightPlane: Line;
  14. targetLine: Line;
  15. color: Color | string | number | undefined;
  16. matrix: Matrix4;
  17. matrixAutoUpdate: boolean;
  18. dispose(): void;
  19. update(): void;
  20. }
粤ICP备19079148号