47 lines
2.1 KiB
Python
47 lines
2.1 KiB
Python
|
from google.protobuf.internal import containers as _containers
|
||
|
from google.protobuf import descriptor as _descriptor
|
||
|
from google.protobuf import message as _message
|
||
|
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
||
|
|
||
|
DESCRIPTOR: _descriptor.FileDescriptor
|
||
|
|
||
|
class Point(_message.Message):
|
||
|
__slots__ = ["x", "y", "count"]
|
||
|
X_FIELD_NUMBER: _ClassVar[int]
|
||
|
Y_FIELD_NUMBER: _ClassVar[int]
|
||
|
COUNT_FIELD_NUMBER: _ClassVar[int]
|
||
|
x: float
|
||
|
y: float
|
||
|
count: int
|
||
|
def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., count: _Optional[int] = ...) -> None: ...
|
||
|
|
||
|
class Path(_message.Message):
|
||
|
__slots__ = ["start_frame", "end_frame", "is_static", "points"]
|
||
|
START_FRAME_FIELD_NUMBER: _ClassVar[int]
|
||
|
END_FRAME_FIELD_NUMBER: _ClassVar[int]
|
||
|
IS_STATIC_FIELD_NUMBER: _ClassVar[int]
|
||
|
POINTS_FIELD_NUMBER: _ClassVar[int]
|
||
|
start_frame: int
|
||
|
end_frame: int
|
||
|
is_static: bool
|
||
|
points: _containers.RepeatedCompositeFieldContainer[Point]
|
||
|
def __init__(self, start_frame: _Optional[int] = ..., end_frame: _Optional[int] = ..., is_static: bool = ..., points: _Optional[_Iterable[_Union[Point, _Mapping]]] = ...) -> None: ...
|
||
|
|
||
|
class BallPaths(_message.Message):
|
||
|
__slots__ = ["ball_identifier", "paths"]
|
||
|
BALL_IDENTIFIER_FIELD_NUMBER: _ClassVar[int]
|
||
|
PATHS_FIELD_NUMBER: _ClassVar[int]
|
||
|
ball_identifier: int
|
||
|
paths: _containers.RepeatedCompositeFieldContainer[Path]
|
||
|
def __init__(self, ball_identifier: _Optional[int] = ..., paths: _Optional[_Iterable[_Union[Path, _Mapping]]] = ...) -> None: ...
|
||
|
|
||
|
class Shot(_message.Message):
|
||
|
__slots__ = ["start_frame", "end_frame", "ball_paths"]
|
||
|
START_FRAME_FIELD_NUMBER: _ClassVar[int]
|
||
|
END_FRAME_FIELD_NUMBER: _ClassVar[int]
|
||
|
BALL_PATHS_FIELD_NUMBER: _ClassVar[int]
|
||
|
start_frame: int
|
||
|
end_frame: int
|
||
|
ball_paths: _containers.RepeatedCompositeFieldContainer[BallPaths]
|
||
|
def __init__(self, start_frame: _Optional[int] = ..., end_frame: _Optional[int] = ..., ball_paths: _Optional[_Iterable[_Union[BallPaths, _Mapping]]] = ...) -> None: ...
|