Files
PhotonVision/photon-lib/py/photonlibpy/targeting/TargetCorner.py

14 lines
276 B
Python
Raw Normal View History

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"]