Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
18
typings/matplotlib/tri/_triplot.pyi
Normal file
18
typings/matplotlib/tri/_triplot.pyi
Normal file
|
@ -0,0 +1,18 @@
|
|||
"""
|
||||
This type stub file was generated by pyright.
|
||||
"""
|
||||
|
||||
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]:
|
||||
...
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue