M lazy-lock.json M lua/custom/configs/lspconfig.lua M lua/custom/init.lua A lua/custom/journal.lua A nvim_venv/bin/Activate.ps1 A nvim_venv/bin/activate A nvim_venv/bin/activate.csh A nvim_venv/bin/activate.fish
16 lines
446 B
Python
16 lines
446 B
Python
from matplotlib.tri._triangulation import Triangulation
|
|
from matplotlib.axes import Axes
|
|
from matplotlib.lines import Line2D
|
|
|
|
from typing import overload
|
|
from numpy.typing import ArrayLike
|
|
|
|
@overload
|
|
def triplot(
|
|
ax: Axes, triangulation: Triangulation, *args, **kwargs
|
|
) -> tuple[Line2D, Line2D]: ...
|
|
@overload
|
|
def triplot(
|
|
ax: Axes, x: ArrayLike, y: ArrayLike, triangles: ArrayLike = ..., *args, **kwargs
|
|
) -> tuple[Line2D, Line2D]: ...
|