Files
Gaze/Gaze/Models/EnforceModeCalibration.swift
Michael Freno ac3548e77c checkpoint
2026-02-01 00:24:09 -05:00

20 lines
422 B
Swift

//
// EnforceModeCalibration.swift
// Gaze
//
// Created by Mike Freno on 2/1/26.
//
import Foundation
struct EnforceModeCalibration: Codable, Equatable, Hashable, Sendable {
let createdAt: Date
let eyeBoxWidthFactor: Double
let eyeBoxHeightFactor: Double
let faceWidthRatio: Double
let horizontalMin: Double
let horizontalMax: Double
let verticalMin: Double
let verticalMax: Double
}