forked from microsoft/python-type-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransforms.pyi
More file actions
27 lines (16 loc) · 729 Bytes
/
Copy pathtransforms.pyi
File metadata and controls
27 lines (16 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from typing import Any
from matplotlib._typing import ArrayLike
class TransformNode:
def __getattr__(self, name: str) -> Any: ... # incomplete
class BboxBase(TransformNode):
def __getattr__(self, name: str) -> Any: ... # incomplete
class Bbox(BboxBase):
def __init__(self, points: ArrayLike, **kwargs: Any) -> None: ...
@staticmethod
def from_bounds(x0: int, y0: int, width: int, height: int) -> Bbox: ...
def __getattr__(self, name: str) -> Any: ... # incomplete
class Transform(TransformNode):
def __getattr__(self, name: str) -> Any: ... # incomplete
class Affine2D:
def __getattr__(self, name: str) -> Any: ... # incomplete
def __getattr__(name: str) -> Any: ... # incomplete