@readerseye2/cr_type 1.0.154 → 1.0.157
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ast/ast.types.d.ts
CHANGED
|
@@ -8,10 +8,10 @@ export declare enum GazeTrackingState {
|
|
|
8
8
|
}
|
|
9
9
|
/** 단일 시선 샘플 (0~1 정규화 좌표) */
|
|
10
10
|
export interface GazeData {
|
|
11
|
-
/** 정규화된 X 좌표 (0~1, 좌→우) */
|
|
12
|
-
x: number;
|
|
13
|
-
/** 정규화된 Y 좌표 (0~1, 상→하) */
|
|
14
|
-
y: number;
|
|
11
|
+
/** 정규화된 X 좌표 (0~1, 좌→우). BLINK/LOST 시 null */
|
|
12
|
+
x: number | null;
|
|
13
|
+
/** 정규화된 Y 좌표 (0~1, 상→하). BLINK/LOST 시 null */
|
|
14
|
+
y: number | null;
|
|
15
15
|
/** 타임스탬프 (ms, Date.now()) */
|
|
16
16
|
t: number;
|
|
17
17
|
/** 모델 신뢰도 (0~1) */
|