up follow livre

This commit is contained in:
Tykayn 2025-08-30 18:14:14 +02:00 committed by tykayn
parent b4b4398bb0
commit 3a7a3849ae
12242 changed files with 2564461 additions and 6914 deletions

View file

@ -0,0 +1,31 @@
from typing import Any, Literal
from matplotlib.axes import Axes
from matplotlib.backend_bases import Event, MouseButton
from matplotlib.widgets import AxesWidget, Widget
def get_ax() -> Axes: ...
def noop(*args: Any, **kwargs: Any) -> None: ...
def mock_event(
ax: Axes,
button: MouseButton | int | Literal["up", "down"] | None = ...,
xdata: float = ...,
ydata: float = ...,
key: str | None = ...,
step: int = ...,
) -> Event: ...
def do_event(
tool: AxesWidget,
etype: str,
button: MouseButton | int | Literal["up", "down"] | None = ...,
xdata: float = ...,
ydata: float = ...,
key: str | None = ...,
step: int = ...,
) -> None: ...
def click_and_drag(
tool: Widget,
start: tuple[float, float],
end: tuple[float, float],
key: str | None = ...,
) -> None: ...