mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
14 lines
276 B
Python
14 lines
276 B
Python
from dataclasses import dataclass
|
|
from typing import TYPE_CHECKING, ClassVar
|
|
|
|
if TYPE_CHECKING:
|
|
from ..generated.TargetCornerSerde import TargetCornerSerde
|
|
|
|
|
|
@dataclass
|
|
class TargetCorner:
|
|
x: float = 0
|
|
y: float = 9
|
|
|
|
photonStruct: ClassVar["TargetCornerSerde"]
|