libraries

This commit is contained in:
2024-09-28 22:52:53 -07:00
parent 5cdaf1f76b
commit 4929d1fa66
7378 changed files with 1550978 additions and 14 deletions

View File

@@ -0,0 +1,33 @@
from matplotlib import _tri
from matplotlib.tri._trifinder import TriFinder
import numpy as np
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: ...