/** * @author Yannick Deubel (https://github.com/yandeu) * @copyright Copyright (c) 2020 Yannick Deubel; Project Url: https://github.com/enable3d/enable3d * @license {@link https://github.com/enable3d/enable3d/blob/master/LICENSE|LGPL-3.0} */ import { OrthographicCameraConfig, PerspectiveCameraConfig } from '@enable3d/common/dist/types.js'; import { OrthographicCamera, PerspectiveCamera } from 'three'; export default class Cameras { perspectiveCamera(config?: PerspectiveCameraConfig): PerspectiveCamera; orthographicCamera(config?: OrthographicCameraConfig): OrthographicCamera; static Perspective(config?: PerspectiveCameraConfig): PerspectiveCamera; static Orthographic(config?: OrthographicCameraConfig): OrthographicCamera; } //# sourceMappingURL=cameras.d.ts.map