convex-pixel
Version:
The library for creating pseudo 3d interactive scenes based on webgl
12 lines • 432 B
TypeScript
import { IVector2D } from "../../../utils/geom/vector";
import { Camera } from "../../camera";
export interface ICameraController {
camera?: Camera;
initialize?: () => void;
onPOV?: (target: IVector2D) => void;
onMove?: (target: IVector2D) => void;
onZoom?: (zoom: number) => void;
onRotate?: (rotation: number) => void;
destroy: () => void;
}
//# sourceMappingURL=i-camera-controller.d.ts.map