common.v1#
zen_api.common.v1
#
Classes:
-
IntPoint–Integer-based point.
-
IntSize–Integer-based size.
-
DoublePoint–Double-based point object.
-
DoubleSize–Double-based size.
-
DoubleFrame–Double-based frame.
IntPoint
dataclass
#
IntPoint(x: int = betterproto.int32_field(1), y: int = betterproto.int32_field(2))
Bases: Message
Integer-based point.
Attributes:
IntSize
dataclass
#
IntSize(width: int = betterproto.int32_field(1), height: int = betterproto.int32_field(2))
DoublePoint
dataclass
#
DoublePoint(x: float = betterproto.double_field(1), y: float = betterproto.double_field(2))
Bases: Message
Double-based point object.
Attributes:
DoubleSize
dataclass
#
DoubleSize(width: float = betterproto.double_field(1), height: float = betterproto.double_field(2))
DoubleFrame
dataclass
#
DoubleFrame(start_point: DoublePoint = betterproto.message_field(1), size: DoubleSize = betterproto.message_field(2))
Bases: Message
Double-based frame.
Attributes:
-
start_point(DoublePoint) –The start point.
-
size(DoubleSize) –The size.