Files
pyGUI/src/pygui/backend/frame.py
T
jack 9cd3170e8a Replay Tabs:
- Add stability detection and threshold classification features with corresponding tests
2026-06-04 13:25:11 -07:00

12 lines
341 B
Python

from __future__ import annotations
from dataclasses import dataclass
@dataclass(frozen=True)
class Frame:
"""One sample across all sensors ata a point in time"""
seq: int # monotonically increasing
t: float # seconds (relative or epoch)
values: list[float] # one per sensor, in sensor-layout order