up follow livre
This commit is contained in:
parent
b4b4398bb0
commit
3a7a3849ae
12242 changed files with 2564461 additions and 6914 deletions
25
venv/lib/python3.13/site-packages/matplotlib/inset.pyi
Normal file
25
venv/lib/python3.13/site-packages/matplotlib/inset.pyi
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
from . import artist
|
||||
from .axes import Axes
|
||||
from .backend_bases import RendererBase
|
||||
from .patches import ConnectionPatch, Rectangle
|
||||
|
||||
from .typing import ColorType, LineStyleType
|
||||
|
||||
class InsetIndicator(artist.Artist):
|
||||
def __init__(
|
||||
self,
|
||||
bounds: tuple[float, float, float, float] | None = ...,
|
||||
inset_ax: Axes | None = ...,
|
||||
zorder: float | None = ...,
|
||||
**kwargs
|
||||
) -> None: ...
|
||||
def set_alpha(self, alpha: float | None) -> None: ...
|
||||
def set_edgecolor(self, color: ColorType | None) -> None: ...
|
||||
def set_color(self, c: ColorType | None) -> None: ...
|
||||
def set_linewidth(self, w: float | None) -> None: ...
|
||||
def set_linestyle(self, ls: LineStyleType | None) -> None: ...
|
||||
@property
|
||||
def rectangle(self) -> Rectangle: ...
|
||||
@property
|
||||
def connectors(self) -> tuple[ConnectionPatch, ConnectionPatch, ConnectionPatch, ConnectionPatch] | None: ...
|
||||
def draw(self, renderer: RendererBase) -> None: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue