Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
48
typings/matplotlib/tri/_triangulation.pyi
Normal file
48
typings/matplotlib/tri/_triangulation.pyi
Normal file
|
@ -0,0 +1,48 @@
|
|||
"""
|
||||
This type stub file was generated by pyright.
|
||||
"""
|
||||
|
||||
import numpy as np
|
||||
from matplotlib import _tri
|
||||
from matplotlib.tri._trifinder import TriFinder
|
||||
from numpy.typing import ArrayLike
|
||||
from typing import Any
|
||||
|
||||
class Triangulation:
|
||||
x: np.ndarray
|
||||
y: np.ndarray
|
||||
mask: np.ndarray | None
|
||||
is_delaunay: bool
|
||||
triangles: np.ndarray
|
||||
def __init__(self, x: ArrayLike, y: ArrayLike, triangles: ArrayLike | None = ..., mask: ArrayLike | None = ...) -> None:
|
||||
...
|
||||
|
||||
def calculate_plane_coefficients(self, z: ArrayLike) -> np.ndarray:
|
||||
...
|
||||
|
||||
@property
|
||||
def edges(self) -> np.ndarray:
|
||||
...
|
||||
|
||||
def get_cpp_triangulation(self) -> _tri.Triangulation:
|
||||
...
|
||||
|
||||
def get_masked_triangles(self) -> np.ndarray:
|
||||
...
|
||||
|
||||
@staticmethod
|
||||
def get_from_args_and_kwargs(*args, **kwargs) -> tuple[Triangulation, tuple[Any, ...], dict[str, Any]]:
|
||||
...
|
||||
|
||||
def get_trifinder(self) -> TriFinder:
|
||||
...
|
||||
|
||||
@property
|
||||
def neighbors(self) -> np.ndarray:
|
||||
...
|
||||
|
||||
def set_mask(self, mask: None | ArrayLike) -> None:
|
||||
...
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue