| 11 | } |
| 12 | |
| 13 | export interface CameraConfig { |
| 14 | horizontalFov: number; // Radians |
| 15 | isFrontFacing: boolean; // true for front/thermal, false for back |
| 16 | } |
| 17 | |
| 18 | export const DEFAULT_CAMERA_CONFIGS: Record<CameraType, CameraConfig> = { |
| 19 | camera: { horizontalFov: Math.PI * 70 / 180, isFrontFacing: true }, |
nothing calls this directly
no outgoing calls
no test coverage detected