Skip to content

Commit

Permalink
Update geometry.pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRedstone058 committed Sep 29, 2024
1 parent b63588b commit f224675
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions buildconfig/stubs/pygame/geometry.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,22 @@ class Circle:
def center(self) -> Tuple[float, float]: ...
@center.setter
def center(self, value: Coordinate) -> None: ...
@property
def top(self) -> Tuple[float, float]: ...
@top.setter
def top(self, value: Coordinate) -> None: ...
@property
def left(self) -> Tuple[float, float]: ...
@left.setter
def left(self, value: Coordinate) -> None: ...
@property
def bottom(self) -> Tuple[float, float]: ...
@bottom.setter
def bottom(self, value: Coordinate) -> None: ...
@property
def right(self) -> Tuple[float, float]: ...
@right.setter
def right(self, value: Coordinate) -> None: ...
@overload
def __init__(self, x: float, y: float, r: float) -> None: ...
@overload
Expand Down

0 comments on commit f224675

Please sign in to comment.