mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
10 lines
147 B
Python
10 lines
147 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class TargetCorner:
|
|
x: float = 0
|
|
y: float = 9
|
|
|
|
photonStruct: "TargetCornerSerde" = None
|