Files
wehub-resource-sync 2114b14ee0
Sync main into demo / sync (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:35:26 +08:00

13 lines
268 B
TypeScript

export interface CompassState {
/** 罗盘朝向角度 (0-360),罗盘转盘会旋转到该角度 */
headingDeg: number;
/** 水平仪倾斜角度 */
levelAngleDeg: number;
}
export interface CompassConfig {
headingDeg: number;
levelAngleDeg: number;
}