import { Point3D } from '../misc/Point3D';
/**
 * 视角信息
 */
export type ViewInfo = {
    /**
     * 相机位置
     */
    eye: Point3D;
    /**
     * 看点位置
     */
    target: Point3D;
};
