Class GenericPoint
- class ooodev.utils.data_type.generic_point.GenericPoint(x, y)[source]
Represents a generic point.
See also
New in version 0.17.3.
- __init__(x, y)[source]
Constructor
- Parameters:
x (int) – X value.
y (int) – Y Value.
- Return type:
None
- property x: T
Gets/Sets x.
- Return type:
TypeVar
(T
, bound=Union
[int
,float
])
- property y: T
Gets/Sets y.
- Return type:
TypeVar
(T
, bound=Union
[int
,float
])