sensAI-Edge-Vision-Engine-SDK / shared /eve_python /structs /EveScreenLocationStructs.py
mgamsby-lattice's picture
Upload sensAI-Edge-Vision-Engine-SDK with upload_repo.py
f8232c0 verified
Raw
History Blame Contribute Delete
360 Bytes
import ctypes
from ctypes_enum import CtypesEnum
from .CScreenLocation import *
from .EveErrors import *
class EveScreenLocationOptions(ctypes.Structure):
_fields_ = [
("topLeftX", ctypes.c_float),
("topLeftY", ctypes.c_float),
]
class EveScreenLocationData(ctypes.Structure):
_fields_ = [
("data", CScreenLocation),
("error", ctypes.c_int),
]