@shapediver/viewer.viewport
Version:
This is the npm package for the ShapeDiver Viewer Viewport API. For more information on ShapeDiver, please visit our [homepage](https://shapediver.com/).
13 lines • 469 B
TypeScript
import { type ICameraApi } from "./ICameraApi";
/**
* The api for a perspective camera.
* A perspective camera can be created by calling the {@link createPerspectiveCamera} method.
* A camera has a multitude of properties and methods that can be used to adjust the behavior.
*/
export interface IPerspectiveCameraApi extends ICameraApi {
/**
* The field of view for the camera.
*/
fov: number;
}
//# sourceMappingURL=IPerspectiveCameraApi.d.ts.map